diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-06-30 12:25:07 -0700 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2016-06-30 21:25:07 +0200 |
commit | 60a3b1e11ab0cef0f1e690a7c7117866113cf540 (patch) | |
tree | dbbbaaee44d87bfc6e90fb675934181030d5931f /src/libsystemd/libsystemd.sym | |
parent | 39231d7b62235592cafc6d86c6a1d49fc0219fe2 (diff) |
sd-event: expose the event loop iteration counter via sd_event_get_iteration() (#3631)
This extends the existing event loop iteration counter to 64bit, and exposes it
via a new function sd_event_get_iteration(). This is helpful for cases like
issue #3612. After all, since we maintain the counter anyway, we might as well
expose it.
(This also fixes an unrelated issue in the man page for sd_event_wait() where
micro and milliseconds got mixed up)
Diffstat (limited to 'src/libsystemd/libsystemd.sym')
-rw-r--r-- | src/libsystemd/libsystemd.sym | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libsystemd/libsystemd.sym b/src/libsystemd/libsystemd.sym index 0b3a1708dc..542254295c 100644 --- a/src/libsystemd/libsystemd.sym +++ b/src/libsystemd/libsystemd.sym @@ -495,3 +495,8 @@ global: sd_journal_open_directory_fd; sd_journal_open_files_fd; } LIBSYSTEMD_229; + +LIBSYSTEMD_231 { +global: + sd_event_get_iteration; +} LIBSYSTEMD_230; |