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/libsystemd-journal.sym | |
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/libsystemd-journal.sym')
-rw-r--r-- | src/journal/libsystemd-journal.sym | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/journal/libsystemd-journal.sym b/src/journal/libsystemd-journal.sym index fbe41501f0..e241318cb0 100644 --- a/src/journal/libsystemd-journal.sym +++ b/src/journal/libsystemd-journal.sym @@ -93,3 +93,8 @@ LIBSYSTEMD_JOURNAL_198 { global: sd_journal_reliable_fd; } LIBSYSTEMD_JOURNAL_196; + +LIBSYSTEMD_JOURNAL_201 { +global: + sd_journal_get_events; +} LIBSYSTEMD_JOURNAL_198; |