summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorYu Watanabe <watanabe.yu+github@gmail.com>2023-05-10 03:25:37 +0900
committerYu Watanabe <watanabe.yu+github@gmail.com>2023-05-10 15:06:39 +0900
commitfcd7e0b7edf57d8de1de35bcef26c22ecd62b256 (patch)
tree5daae10c7713bc2d76e0d5b57b501d9e4c672921 /src/core
parentbc52801034e9e33d7aab0cb64c84f64cd9d4c035 (diff)
downloadsystemd-fcd7e0b7edf57d8de1de35bcef26c22ecd62b256.tar.gz
core: several cleanups for job_get_timeout()
- add missing assertion, - rename the argument for storing result, - always initialize result on success.
Diffstat (limited to 'src/core')
-rw-r--r--src/core/job.c10
-rw-r--r--src/core/job.h2
2 files changed, 8 insertions, 4 deletions
diff --git a/src/core/job.c b/src/core/job.c
index 24f407ad83..f87b0f7c74 100644
--- a/src/core/job.c
+++ b/src/core/job.c
@@ -1404,11 +1404,13 @@ void job_shutdown_magic(Job *j) {
(void) asynchronous_sync(NULL);
}
-int job_get_timeout(Job *j, usec_t *timeout) {
+int job_get_timeout(Job *j, usec_t *ret) {
usec_t x = USEC_INFINITY, y = USEC_INFINITY;
Unit *u = ASSERT_PTR(ASSERT_PTR(j)->unit);
int r;
+ assert(ret);
+
if (j->timer_event_source) {
r = sd_event_source_get_time(j->timer_event_source, &x);
if (r < 0)
@@ -1421,10 +1423,12 @@ int job_get_timeout(Job *j, usec_t *timeout) {
return r;
}
- if (x == USEC_INFINITY && y == USEC_INFINITY)
+ if (x == USEC_INFINITY && y == USEC_INFINITY) {
+ *ret = 0;
return 0;
+ }
- *timeout = MIN(x, y);
+ *ret = MIN(x, y);
return 1;
}
diff --git a/src/core/job.h b/src/core/job.h
index dcb5c7fff6..f3e0b93fed 100644
--- a/src/core/job.h
+++ b/src/core/job.h
@@ -220,7 +220,7 @@ char *job_dbus_path(Job *j);
void job_shutdown_magic(Job *j);
-int job_get_timeout(Job *j, usec_t *timeout);
+int job_get_timeout(Job *j, usec_t *ret);
bool job_may_gc(Job *j);
void job_add_to_gc_queue(Job *j);