diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2015-11-12 19:54:34 +0000 |
---|---|---|
committer | Evgeny Vereshchagin <evvers@ya.ru> | 2015-11-12 19:54:34 +0000 |
commit | df0060346ae326bf3c21140ddb3f0ffa519e2e7f (patch) | |
tree | 822ce40f4690a73b63a8214c4bcf892c2ca71fee /src | |
parent | 05c450966a08ff85fa8348e2fe41b722612fa3dc (diff) |
core: use SD_EVENT_PRIORITY_NORMAL-n instead on -n
Diffstat (limited to 'src')
-rw-r--r-- | src/core/manager.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/manager.c b/src/core/manager.c index f712ac29dc..099bfe4268 100644 --- a/src/core/manager.c +++ b/src/core/manager.c @@ -486,7 +486,7 @@ static int manager_setup_signals(Manager *m) { * later than notify_fd processing, so that the notify * processing can still figure out to which process/service a * message belongs, before we reap the process. */ - r = sd_event_source_set_priority(m->signal_event_source, -5); + r = sd_event_source_set_priority(m->signal_event_source, SD_EVENT_PRIORITY_NORMAL-5); if (r < 0) return r; @@ -734,7 +734,7 @@ static int manager_setup_notify(Manager *m) { /* Process signals a bit earlier than SIGCHLD, so that we can * still identify to which service an exit message belongs */ - r = sd_event_source_set_priority(m->notify_event_source, -7); + r = sd_event_source_set_priority(m->notify_event_source, SD_EVENT_PRIORITY_NORMAL-7); if (r < 0) return log_error_errno(r, "Failed to set priority of notify event source: %m"); |