X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=man%2Fsd_event_add_time.xml;h=31d1013552b62a88fe07c522f8028e44a2981a94;hp=a3304f7985b995408a749beb15fcafc332974e52;hb=5544ee85163733eaa50f598fcf3bd9421d4a42f9;hpb=5aded369782f28255bc6b494ca905d7acaea7a56 diff --git a/man/sd_event_add_time.xml b/man/sd_event_add_time.xml index a3304f798..31d101355 100644 --- a/man/sd_event_add_time.xml +++ b/man/sd_event_add_time.xml @@ -1,4 +1,4 @@ - + @@ -68,6 +68,13 @@ along with systemd; If not, see . void *userdata + + typedef int (*sd_event_time_handler_t) + sd_event_source *s + uint64_t usec + void *userdata + + int sd_event_source_get_time sd_event_source *source @@ -132,11 +139,15 @@ along with systemd; If not, see . actually have been called at a slightly later time, subject to the specified accuracy value, the kernel timer slack (see prctl2) - and additional scheduling latencies. By default, the timer will - elapse once (SD_EVENT_ONESHOT), but this may be changed with - sd_event_source_set_enabled3. If - the handler function returns a negative error code, it will be - disabled after the invocation, even if SD_EVENT_ON mode is set. + and additional scheduling latencies. + + By default, the timer will elapse once + (SD_EVENT_ONESHOT), but this may be changed + with + sd_event_source_set_enabled3. + If the handler function returns a negative error code, it will be + disabled after the invocation, even if + SD_EVENT_ON mode is set. sd_event_source_get_time() retrieves @@ -185,34 +196,34 @@ along with systemd; If not, see . - -ENOMEM + -ENOMEM - Not enough memory to allocate object. + Not enough memory to allocate an object. - -EINVAL + -EINVAL An invalid argument has been passed. - -ESTALE + -ESTALE The event loop is already terminated. - -ECHILD + -ECHILD The event loop has been created in a different process. - -ENOTSUP + -ENOTSUP The selected clock is not supported by the event loop implementation. @@ -237,6 +248,9 @@ along with systemd; If not, see . systemd1, sd-event3, sd_event_new3, + sd_event_add_signal3, + sd_event_add_child3, + sd_event_add_defer3, clock_gettime2, sd_event_source_set_enabled3