From: Lennart Poettering Date: Mon, 4 Nov 2013 23:51:14 +0000 (+0100) Subject: event: add some well-defined priority values of event sources X-Git-Tag: v209~1664 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;ds=sidebyside;h=6ee69bab116f6691dbd04debba5d47dc97d2a6cc;p=elogind.git event: add some well-defined priority values of event sources --- diff --git a/src/systemd/sd-event.h b/src/systemd/sd-event.h index 6ac2de88f..46d1d055d 100644 --- a/src/systemd/sd-event.h +++ b/src/systemd/sd-event.h @@ -53,6 +53,13 @@ enum { SD_EVENT_FINISHED }; +enum { + /* And everything inbetween and outside is good too */ + SD_PRIORITY_IMPORTANT = -100, + SD_PRIORITY_NORMAL = 0, + SD_PRIORITY_IDLE = 100 +}; + typedef int (*sd_io_handler_t)(sd_event_source *s, int fd, uint32_t revents, void *userdata); typedef int (*sd_time_handler_t)(sd_event_source *s, uint64_t usec, void *userdata); typedef int (*sd_signal_handler_t)(sd_event_source *s, const struct signalfd_siginfo *si, void *userdata);