X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=man%2Fsd_event_add_time.xml;h=dc25784388a7f50ad14d98c5987f324ddf51ef72;hp=9af8bb9c45503bd449b7297a92d64923e565b4bb;hb=51cb9d734a182c4892a6b31f58d75489a2ca432b;hpb=b408026b9899c1f9d155ac6d9f7bdc7f5cd3defb diff --git a/man/sd_event_add_time.xml b/man/sd_event_add_time.xml index 9af8bb9c4..dc2578438 100644 --- a/man/sd_event_add_time.xml +++ b/man/sd_event_add_time.xml @@ -65,13 +65,13 @@ along with systemd; If not, see . uint64_t usec uint64_t accuracy sd_event_time_handler_t handler - void* userdata + void *userdata int sd_event_source_get_time sd_event_source *source - usec_t* usec + usec_t *usec @@ -121,7 +121,7 @@ along with systemd; If not, see . accuracy value in microseconds specifying a time the timer event may be delayed. Specify 0 for selecting the default accuracy (250ms). Specify 1 for most accurate timers. Consider specifying - 60000000 or larger (1h) for long running events that may be + 60000000 or larger (1h) for long-running events that may be delayed substantially. Picking higher accuracy values allows the system to coalesce timer events more aggressively, thus improving power efficiency. The handler shall @@ -132,10 +132,10 @@ 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 + 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 + the handler function returns a negative error code, it will be disabled after the invocation, even if SD_EVENT_ON mode is set.