2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4 <!-- SPDX-License-Identifier: LGPL-2.1-or-later -->
6 <refentry id="sd_event_now" xmlns:xi="http://www.w3.org/2001/XInclude">
9 <title>sd_event_now</title>
10 <productname>systemd</productname>
14 <refentrytitle>sd_event_now</refentrytitle>
15 <manvolnum>3</manvolnum>
19 <refname>sd_event_now</refname>
21 <refpurpose>Retrieve current event loop iteration timestamp</refpurpose>
26 <funcsynopsisinfo>#include <systemd/sd-event.h></funcsynopsisinfo>
29 <funcdef>int <function>sd_event_now</function></funcdef>
30 <paramdef>sd_event *<parameter>event</parameter></paramdef>
31 <paramdef>clockid_t <parameter>clock</parameter></paramdef>
32 <paramdef>uint64_t *<parameter>usec</parameter></paramdef>
39 <title>Description</title>
41 <para><function>sd_event_now()</function> returns the time when
42 the most recent event loop iteration began. A timestamp
43 is taken right after returning from the event sleep, and before
44 dispatching any event sources. The <parameter>event</parameter>
45 parameter specifies the event loop object to retrieve the timestamp
46 from. The <parameter>clock</parameter> parameter specifies the clock to
47 retrieve the timestamp for, and is one of
48 <constant>CLOCK_REALTIME</constant> (or equivalently
49 <constant>CLOCK_REALTIME_ALARM</constant>),
50 <constant>CLOCK_MONOTONIC</constant>, or
51 <constant>CLOCK_BOOTTIME</constant> (or equivalently
52 <constant>CLOCK_BOOTTIME_ALARM</constant>), see
53 <citerefentry project='man-pages'><refentrytitle>clock_gettime</refentrytitle><manvolnum>2</manvolnum></citerefentry>
54 for more information on the various clocks. The retrieved
55 timestamp is stored in the <parameter>usec</parameter> parameter,
56 in μs since the clock's epoch. If this function is invoked before
57 the first event loop iteration, the current time is returned, as
58 reported by <function>clock_gettime()</function>. To distinguish
59 this case from a regular invocation the return value will be
60 positive, and zero when the returned timestamp refers to an actual
61 event loop iteration.</para>
65 <title>Return Value</title>
67 <para>If the first event loop iteration has not run yet <function>sd_event_now()</function> writes
68 current time to <parameter>usec</parameter> and returns a positive return value. Otherwise, it will
69 write the requested timestamp to <parameter>usec</parameter> and return 0. On failure, the call returns a
70 negative errno-style error code.</para>
75 <para>Returned values may indicate the following problems:</para>
79 <term><constant>-EINVAL</constant></term>
81 <listitem><para>An invalid parameter was passed.</para></listitem>
86 <term><constant>-EOPNOTSUPP</constant></term>
88 <listitem><para>Unsupported clock type.</para></listitem>
92 <term><constant>-ECHILD</constant></term>
94 <listitem><para>The event loop object was created in a different process, library or module instance.</para></listitem>
100 <xi:include href="libsystemd-pkgconfig.xml" />
103 <title>History</title>
104 <para><function>sd_event_now()</function> was added in version 229.</para>
108 <title>See Also</title>
111 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
112 <citerefentry><refentrytitle>sd-event</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
113 <citerefentry><refentrytitle>sd_event_new</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
114 <citerefentry><refentrytitle>sd_event_add_time</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
115 <citerefentry project='man-pages'><refentrytitle>clock_gettime</refentrytitle><manvolnum>2</manvolnum></citerefentry>