1SD_EVENT_SOURCE_GET_EVENT(3)sd_event_source_get_evenStD_EVENT_SOURCE_GET_EVENT(3)
2
3
4
6 sd_event_source_get_event - Retrieve the event loop of an event source
7
9 #include <systemd/sd-event.h>
10
11 sd_event* sd_event_source_get_event(sd_event_source *source);
12
14 sd_event_source_get_event() may be used to retrieve the event loop
15 object the event source object specified as source is associated with.
16 The event loop object is specified when creating an event source object
17 with calls such as sd_event_add_io(3) or sd_event_add_time(3).
18
20 On success, sd_event_source_get_event() returns the associated event
21 loop object. On failure, it returns NULL.
22
24 These APIs are implemented as a shared library, which can be compiled
25 and linked to with the libsystemd pkg-config(1) file.
26
28 sd-event(3), sd_event_add_io(3), sd_event_add_time(3),
29 sd_event_add_signal(3), sd_event_add_child(3), sd_event_add_inotify(3),
30 sd_event_add_defer(3), sd_event_source_set_userdata(3)
31
32
33
34systemd 253 SD_EVENT_SOURCE_GET_EVENT(3)