]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/sd_event_new.xml
man: don't claim systemd-analyze was documented as part of the man-pages project
[thirdparty/systemd.git] / man / sd_event_new.xml
CommitLineData
3802a3d3 1<?xml version='1.0'?> <!--*- Mode: nxml; nxml-child-indent: 2; indent-tabs-mode: nil -*-->
faae655d 2<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
12b42c76 3"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
faae655d
LP
4
5<!--
572eb058
ZJS
6 SPDX-License-Identifier: LGPL-2.1+
7
b975b0d5 8 This file is part of systemd.
faae655d 9
b975b0d5 10 Copyright 2014 Lennart Poettering
faae655d
LP
11-->
12
dc83f27a 13<refentry id="sd_event_new" xmlns:xi="http://www.w3.org/2001/XInclude">
faae655d
LP
14
15 <refentryinfo>
16 <title>sd_event_new</title>
17 <productname>systemd</productname>
18
19 <authorgroup>
20 <author>
21 <contrib>Developer</contrib>
22 <firstname>Lennart</firstname>
23 <surname>Poettering</surname>
24 <email>lennart@poettering.net</email>
25 </author>
26 </authorgroup>
27 </refentryinfo>
28
29 <refmeta>
30 <refentrytitle>sd_event_new</refentrytitle>
31 <manvolnum>3</manvolnum>
32 </refmeta>
33
34 <refnamediv>
35 <refname>sd_event_new</refname>
36 <refname>sd_event_default</refname>
37 <refname>sd_event_ref</refname>
38 <refname>sd_event_unref</refname>
4afd3348 39 <refname>sd_event_unrefp</refname>
dc83f27a
LP
40 <refname>sd_event_get_tid</refname>
41 <refname>sd_event</refname>
faae655d
LP
42
43 <refpurpose>Acquire and release an event loop object</refpurpose>
44 </refnamediv>
45
46 <refsynopsisdiv>
47 <funcsynopsis>
dc83f27a
LP
48 <funcsynopsisinfo>#include &lt;systemd/sd-event.h&gt;</funcsynopsisinfo>
49
50 <funcsynopsisinfo><token>typedef</token> struct sd_event sd_event;</funcsynopsisinfo>
faae655d
LP
51
52 <funcprototype>
53 <funcdef>int <function>sd_event_new</function></funcdef>
dc83f27a 54 <paramdef>sd_event **<parameter>event</parameter></paramdef>
faae655d
LP
55 </funcprototype>
56
57 <funcprototype>
58 <funcdef>int <function>sd_event_default</function></funcdef>
dc83f27a
LP
59 <paramdef>sd_event **<parameter>event</parameter></paramdef>
60 </funcprototype>
61
62 <funcprototype>
63 <funcdef>sd_event *<function>sd_event_ref</function></funcdef>
64 <paramdef>sd_event *<parameter>event</parameter></paramdef>
faae655d
LP
65 </funcprototype>
66
67 <funcprototype>
dc83f27a
LP
68 <funcdef>sd_event *<function>sd_event_unref</function></funcdef>
69 <paramdef>sd_event *<parameter>event</parameter></paramdef>
faae655d
LP
70 </funcprototype>
71
4afd3348
LP
72 <funcprototype>
73 <funcdef>void <function>sd_event_unrefp</function></funcdef>
74 <paramdef>sd_event **<parameter>event</parameter></paramdef>
75 </funcprototype>
76
faae655d 77 <funcprototype>
dc83f27a
LP
78 <funcdef>int <function>sd_event_get_tid</function></funcdef>
79 <paramdef>sd_event *<parameter>event</parameter></paramdef>
80 <paramdef>pid_t *<parameter>tid</parameter></paramdef>
faae655d
LP
81 </funcprototype>
82
83 </funcsynopsis>
84 </refsynopsisdiv>
85
86 <refsect1>
87 <title>Description</title>
88
89 <para><function>sd_event_new()</function> allocates a new event
90 loop object. The event loop object is returned in the
b8bde116 91 <parameter>event</parameter> parameter. After use, drop
faae655d
LP
92 the returned reference with
93 <function>sd_event_unref()</function>. When the last reference is
bfe6c07e 94 dropped, the object is freed.</para>
faae655d
LP
95
96 <para><function>sd_event_default()</function> acquires a reference
97 to the default event loop object of the calling thread, possibly
98 allocating a new object if no default event loop object has been
b8bde116 99 allocated yet for the thread. After use, drop the returned
a6ad1458 100 reference with <function>sd_event_unref()</function>. When the
b8bde116 101 last reference is dropped, the event loop is freed. If this
faae655d
LP
102 function is called while the object returned from a previous call
103 from the same thread is still referenced, the same object is
104 returned again, but the reference is increased by one. It is
105 recommended to use this call instead of
106 <function>sd_event_new()</function> in order to share event loop
107 objects between various components that are dispatched in the same
bfe6c07e
ZJS
108 thread. All threads have exactly either zero or one default event loop
109 objects associated, but never more.</para>
faae655d 110
dc83f27a
LP
111 <para>After allocating an event loop object, add event sources to
112 it with
113 <citerefentry><refentrytitle>sd_event_add_io</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
114 <citerefentry><refentrytitle>sd_event_add_time</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
115 <citerefentry><refentrytitle>sd_event_add_signal</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
116 <citerefentry><refentrytitle>sd_event_add_child</refentrytitle><manvolnum>3</manvolnum></citerefentry>
117 or
118 <citerefentry><refentrytitle>sd_event_add_defer</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
119 and then execute the event loop using
120 <citerefentry><refentrytitle>sd_event_run</refentrytitle><manvolnum>3</manvolnum></citerefentry>.</para>
121
faae655d 122 <para><function>sd_event_ref()</function> increases the reference
bfe6c07e 123 count of the specified event loop object by one.</para>
faae655d
LP
124
125 <para><function>sd_event_unref()</function> decreases the
bfe6c07e
ZJS
126 reference count of the specified event loop object by one. If
127 the count hits zero, the object is freed. Note that it
dca348bc 128 is freed regardless of whether it is the default event loop object for a
faae655d 129 thread or not. This means that allocating an event loop with
b8bde116 130 <function>sd_event_default()</function>, then releasing it, and
faae655d
LP
131 then acquiring a new one with
132 <function>sd_event_default()</function> will result in two
b938cb90 133 distinct objects. Note that, in order to free an event loop object,
faae655d 134 all remaining event sources of the event loop also need to be
bfe6c07e 135 freed as each keeps a reference to it.</para>
dc83f27a 136
4afd3348
LP
137 <para><function>sd_event_unrefp()</function> is similar to
138 <function>sd_event_unref()</function> but takes a pointer to a
139 pointer to an <type>sd_event</type> object. This call is useful in
140 conjunction with GCC's and LLVM's <ulink
141 url="https://gcc.gnu.org/onlinedocs/gcc/Common-Variable-Attributes.html">Clean-up
142 Variable Attribute</ulink>. Note that this function is defined as
143 inline function. Use a declaration like the following,
144 in order to allocate an event loop object that is freed
145 automatically as the code block is left:</para>
146
147 <programlisting>{
148 __attribute__((cleanup(sd_event_unrefp)) sd_event *event = NULL;
149 int r;
150
151 r = sd_event_default(&amp;event);
152 if (r &lt; 0)
153 fprintf(stderr, "Failed to allocate event loop: %s\n", strerror(-r));
154
155}</programlisting>
156
157 <para><function>sd_event_ref()</function>,
158 <function>sd_event_unref()</function> and
159 <function>sd_event_unrefp()</function> execute no operation if the
dc83f27a
LP
160 passed in event loop object is <constant>NULL</constant>.</para>
161
162 <para><function>sd_event_get_tid()</function> retrieves the thread
163 identifier ("TID") of the thread the specified event loop object
164 is associated with. This call is only supported for event loops
165 allocated with <function>sd_event_default()</function>, and
166 returns the identifier for the thread the event loop is the
167 default event loop of. See <citerefentry
168 project='man-pages'><refentrytitle>gettid</refentrytitle><manvolnum>2</manvolnum></citerefentry>
169 for more information on thread identifiers.</para>
faae655d
LP
170 </refsect1>
171
172 <refsect1>
173 <title>Return Value</title>
174
6d6e4ddd
ME
175 <para>On success, <function>sd_event_new()</function>,
176 <function>sd_event_default()</function> and
177 <function>sd_event_get_tid()</function> return 0 or a positive
faae655d
LP
178 integer. On failure, they return a negative errno-style error
179 code. <function>sd_event_ref()</function> always returns a pointer
180 to the event loop object passed
181 in. <function>sd_event_unref()</function> always returns
bfe6c07e 182 <constant>NULL</constant>.</para>
faae655d
LP
183 </refsect1>
184
185 <refsect1>
186 <title>Errors</title>
187
188 <para>Returned errors may indicate the following problems:</para>
189
190 <variablelist>
191 <varlistentry>
8474b70c 192 <term><constant>-ENOMEM</constant></term>
faae655d 193
bfe6c07e 194 <listitem><para>Not enough memory to allocate the object.</para></listitem>
faae655d
LP
195 </varlistentry>
196
197 <varlistentry>
8474b70c 198 <term><constant>-EMFILE</constant></term>
faae655d
LP
199
200 <listitem><para>The maximum number of event loops has been allocated.</para></listitem>
201
202 </varlistentry>
faae655d 203
dc83f27a
LP
204 <varlistentry>
205 <term><constant>-ENXIO</constant></term>
faae655d 206
dc83f27a
LP
207 <listitem><para><function>sd_event_get_tid()</function> was
208 invoked on an event loop object that was not allocated with
209 <function>sd_event_default()</function>.</para></listitem>
210 </varlistentry>
211
212 </variablelist>
faae655d
LP
213 </refsect1>
214
dc83f27a
LP
215 <xi:include href="libsystemd-pkgconfig.xml" />
216
faae655d
LP
217 <refsect1>
218 <title>See Also</title>
219
220 <para>
221 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
222 <citerefentry><refentrytitle>sd-event</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
223 <citerefentry><refentrytitle>sd_event_add_io</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
224 <citerefentry><refentrytitle>sd_event_add_time</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
225 <citerefentry><refentrytitle>sd_event_add_signal</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
226 <citerefentry><refentrytitle>sd_event_add_child</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
227 <citerefentry><refentrytitle>sd_event_add_defer</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
228 <citerefentry><refentrytitle>sd_event_add_post</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
dc83f27a
LP
229 <citerefentry><refentrytitle>sd_event_add_exit</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
230 <citerefentry><refentrytitle>sd_event_run</refentrytitle><manvolnum>3</manvolnum></citerefentry>,
231 <citerefentry project='man-pages'><refentrytitle>gettid</refentrytitle><manvolnum>2</manvolnum></citerefentry>
faae655d
LP
232 </para>
233 </refsect1>
234
235</refentry>