diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-04-04 17:22:28 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-04-04 17:22:28 +0200 |
commit | ee531d949c2f62374fc109252f8cbe61c2b8ee39 (patch) | |
tree | d20b0aa3f34ceb74cb73e36896fb7cef1c33f61f /src/journal/journalctl.c | |
parent | 7c537b2e2826139bb73c6eee15d46bf9f7e6059f (diff) |
journal: add public API call sd_journal_get_events()
This function should be used when filling in "struct pollfd"'s .events
field for watching the journal. It will always return POLLIN for now,
but we should keep our options open to change this later on.
This mimics libsystemd-bus' sd_bus_get_events() call with the same
purpose.
Diffstat (limited to 'src/journal/journalctl.c')
-rw-r--r-- | src/journal/journalctl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index 1f26787cf7..86895b8f5b 100644 --- a/src/journal/journalctl.c +++ b/src/journal/journalctl.c @@ -27,7 +27,6 @@ #include <stdio.h> #include <unistd.h> #include <stdlib.h> -#include <sys/poll.h> #include <time.h> #include <getopt.h> #include <signal.h> |