OSDN Git Service

0268a4ae1628fc09c3f94ddebffda34c81f4b3dc
[linuxjm/LDP_man-pages.git] / original / man2 / eventfd.2
1 .\" Copyright (C) 2008 Michael Kerrisk <mtk.manpages@gmail.com>
2 .\" starting from a version by Davide Libenzi <davidel@xmailserver.org>
3 .\"
4 .\" %%%LICENSE_START(GPLv2+_SW_3_PARA)
5 .\" This program is free software; you can redistribute it and/or modify
6 .\" it under the terms of the GNU General Public License as published by
7 .\" the Free Software Foundation; either version 2 of the License, or
8 .\" (at your option) any later version.
9 .\"
10 .\" This program is distributed in the hope that it will be useful,
11 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
12 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 .\" GNU General Public License for more details.
14 .\"
15 .\" You should have received a copy of the GNU General Public
16 .\" License along with this manual; if not, see
17 .\" <http://www.gnu.org/licenses/>.
18 .\" %%%LICENSE_END
19 .\"
20 .\" 2008-10-10, mtk: describe eventfd2(), and EFD_NONBLOCK and EFD_CLOEXEC
21 .\"
22 .TH EVENTFD 2 2010-08-30 Linux "Linux Programmer's Manual"
23 .SH NAME
24 eventfd \- create a file descriptor for event notification
25 .SH SYNOPSIS
26 .B #include <sys/eventfd.h>
27 .sp
28 .BI "int eventfd(unsigned int " initval ", int " flags );
29 .SH DESCRIPTION
30 .BR eventfd ()
31 creates an "eventfd object" that can be used as
32 an event wait/notify mechanism by user-space applications,
33 and by the kernel to notify user-space applications of events.
34 The object contains an unsigned 64-bit integer
35 .RI ( uint64_t )
36 counter that is maintained by the kernel.
37 This counter is initialized with the value specified in the argument
38 .IR initval .
39
40 The following values may be bitwise ORed in
41 .IR flags
42 to change the behaviour of
43 .BR eventfd ():
44 .TP
45 .BR EFD_CLOEXEC " (since Linux 2.6.27)"
46 Set the close-on-exec
47 .RB ( FD_CLOEXEC )
48 flag on the new file descriptor.
49 See the description of the
50 .B O_CLOEXEC
51 flag in
52 .BR open (2)
53 for reasons why this may be useful.
54 .TP
55 .BR EFD_NONBLOCK " (since Linux 2.6.27)"
56 Set the
57 .BR O_NONBLOCK
58 file status flag on the new open file description.
59 Using this flag saves extra calls to
60 .BR fcntl (2)
61 to achieve the same result.
62 .TP
63 .BR EFD_SEMAPHORE " (since Linux 2.6.30)"
64 Provide semaphore-like semantics for reads from the new file descriptor.
65 See below.
66 .PP
67 In Linux up to version 2.6.26, the
68 .I flags
69 argument is unused, and must be specified as zero.
70
71 As its return value,
72 .BR eventfd ()
73 returns a new file descriptor that can be used to refer to the
74 eventfd object.
75 The following operations can be performed on the file descriptor:
76 .TP
77 .BR read (2)
78 Each successful
79 .BR read (2)
80 returns an 8-byte integer.
81 A
82 .BR read (2)
83 will fail with the error
84 .B EINVAL
85 if the size of the supplied buffer is less than 8 bytes.
86 .IP
87 The value returned by
88 .BR read (2)
89 is in host byte order\(emthat is,
90 the native byte order for integers on the host machine.
91 .IP
92 The semantics of
93 .BR read (2)
94 depend on whether the eventfd counter currently has a nonzero value
95 and whether the
96 .BR EFD_SEMAPHORE
97 flag was specified when creating the eventfd file descriptor:
98 .RS
99 .IP * 3
100 If
101 .BR EFD_SEMAPHORE
102 was not specified and the eventfd counter has a nonzero value, then a
103 .BR read (2)
104 returns 8 bytes containing that value,
105 and the counter's value is reset to zero.
106 .IP *
107 If
108 .BR EFD_SEMAPHORE
109 was specified and the eventfd counter has a nonzero value, then a
110 .BR read (2)
111 returns 8 bytes containing the value 1,
112 and the counter's value is decremented by 1.
113 .IP *
114 If the eventfd counter is zero at the time of the call to
115 .BR read (2),
116 then the call either blocks until the counter becomes nonzero
117 (at which time, the
118 .BR read (2)
119 proceeds as described above)
120 or fails with the error
121 .B EAGAIN
122 if the file descriptor has been made nonblocking.
123 .RE
124 .TP
125 .BR write (2)
126 A
127 .BR write (2)
128 call adds the 8-byte integer value supplied in its
129 buffer to the counter.
130 The maximum value that may be stored in the counter is the largest
131 unsigned 64-bit value minus 1 (i.e., 0xfffffffffffffffe).
132 If the addition would cause the counter's value to exceed
133 the maximum, then the
134 .BR write (2)
135 either blocks until a
136 .BR read (2)
137 is performed on the file descriptor,
138 or fails with the error
139 .B EAGAIN
140 if the file descriptor has been made nonblocking.
141 .IP
142 A
143 .BR write (2)
144 will fail with the error
145 .B EINVAL
146 if the size of the supplied buffer is less than 8 bytes,
147 or if an attempt is made to write the value 0xffffffffffffffff.
148 .TP
149 .BR poll "(2), " select "(2) (and similar)"
150 The returned file descriptor supports
151 .BR poll (2)
152 (and analogously
153 .BR epoll (7))
154 and
155 .BR select (2),
156 as follows:
157 .RS
158 .IP * 3
159 The file descriptor is readable
160 (the
161 .BR select (2)
162 .I readfds
163 argument; the
164 .BR poll (2)
165 .B POLLIN
166 flag)
167 if the counter has a value greater than 0.
168 .IP *
169 The file descriptor is writable
170 (the
171 .BR select (2)
172 .I writefds
173 argument; the
174 .BR poll (2)
175 .B POLLOUT
176 flag)
177 if it is possible to write a value of at least "1" without blocking.
178 .IP *
179 If an overflow of the counter value was detected,
180 then
181 .BR select (2)
182 indicates the file descriptor as being both readable and writable, and
183 .BR poll (2)
184 returns a
185 .B POLLERR
186 event.
187 As noted above,
188 .BR write (2)
189 can never overflow the counter.
190 However an overflow can occur if 2^64
191 eventfd "signal posts" were performed by the KAIO
192 subsystem (theoretically possible, but practically unlikely).
193 If an overflow has occurred, then
194 .BR read (2)
195 will return that maximum
196 .I uint64_t
197 value (i.e., 0xffffffffffffffff).
198 .RE
199 .IP
200 The eventfd file descriptor also supports the other file-descriptor
201 multiplexing APIs:
202 .BR pselect (2)
203 and
204 .BR ppoll (2).
205 .TP
206 .BR close (2)
207 When the file descriptor is no longer required it should be closed.
208 When all file descriptors associated with the same eventfd object
209 have been closed, the resources for object are freed by the kernel.
210 .PP
211 A copy of the file descriptor created by
212 .BR eventfd ()
213 is inherited by the child produced by
214 .BR fork (2).
215 The duplicate file descriptor is associated with the same
216 eventfd object.
217 File descriptors created by
218 .BR eventfd ()
219 are preserved across
220 .BR execve (2),
221 unless the close-on-exec flag has been set.
222 .SH RETURN VALUE
223 On success,
224 .BR eventfd ()
225 returns a new eventfd file descriptor.
226 On error, \-1 is returned and
227 .I errno
228 is set to indicate the error.
229 .SH ERRORS
230 .TP
231 .B EINVAL
232 An unsupported value was specified in
233 .IR flags .
234 .TP
235 .B EMFILE
236 The per-process limit on open file descriptors has been reached.
237 .TP
238 .B ENFILE
239 The system-wide limit on the total number of open files has been
240 reached.
241 .TP
242 .B ENODEV
243 .\" Note from Davide:
244 .\" The ENODEV error is basically never going to happen if
245 .\" the kernel boots correctly. That error happen only if during
246 .\" the kernel initialization, some error occur in the anonymous
247 .\" inode source initialization.
248 Could not mount (internal) anonymous inode device.
249 .TP
250 .B ENOMEM
251 There was insufficient memory to create a new
252 eventfd file descriptor.
253 .SH VERSIONS
254 .BR eventfd ()
255 is available on Linux since kernel 2.6.22.
256 Working support is provided in glibc since version 2.8.
257 .\" eventfd() is in glibc 2.7, but reportedly does not build
258 The
259 .BR eventfd2 ()
260 system call (see NOTES) is available on Linux since kernel 2.6.27.
261 Since version 2.9, the glibc
262 .BR eventfd ()
263 wrapper will employ the
264 .BR eventfd2 ()
265 system call, if it is supported by the kernel.
266 .SH CONFORMING TO
267 .BR eventfd ()
268 and
269 .BR eventfd2 ()
270 are Linux-specific.
271 .SH NOTES
272 Applications can use an eventfd file descriptor instead of a pipe (see
273 .BR pipe (2))
274 in all cases where a pipe is used simply to signal events.
275 The kernel overhead of an eventfd file descriptor
276 is much lower than that of a pipe,
277 and only one file descriptor is
278 required (versus the two required for a pipe).
279
280 When used in the kernel, an eventfd
281 file descriptor can provide a bridge from kernel to user space, allowing,
282 for example, functionalities like KAIO (kernel AIO)
283 .\" or eventually syslets/threadlets
284 to signal to a file descriptor that some operation is complete.
285
286 A key point about an eventfd file descriptor is that it can be
287 monitored just like any other file descriptor using
288 .BR select (2),
289 .BR poll (2),
290 or
291 .BR epoll (7).
292 This means that an application can simultaneously monitor the
293 readiness of "traditional" files and the readiness of other
294 kernel mechanisms that support the eventfd interface.
295 (Without the
296 .BR eventfd ()
297 interface, these mechanisms could not be multiplexed via
298 .BR select (2),
299 .BR poll (2),
300 or
301 .BR epoll (7).)
302 .SS Underlying Linux system calls
303 There are two underlying Linux system calls:
304 .BR eventfd ()
305 and the more recent
306 .BR eventfd2 ().
307 The former system call does not implement a
308 .I flags
309 argument.
310 The latter system call implements the
311 .I flags
312 values described above.
313 The glibc wrapper function will use
314 .BR eventfd2 ()
315 where it is available.
316 .SS Additional glibc features
317 The GNU C library defines an additional type,
318 and two functions that attempt to abstract some of the details of
319 reading and writing on an eventfd file descriptor:
320 .in +4n
321 .nf
322
323 typedef uint64_t eventfd_t;
324
325 int eventfd_read(int fd, eventfd_t *value);
326 int eventfd_write(int fd, eventfd_t value);
327 .fi
328 .in
329
330 The functions perform the read and write operations on an
331 eventfd file descriptor,
332 returning 0 if the correct number of bytes was transferred,
333 or \-1 otherwise.
334 .SH EXAMPLE
335 .PP
336 The following program creates an eventfd file descriptor
337 and then forks to create a child process.
338 While the parent briefly sleeps,
339 the child writes each of the integers supplied in the program's
340 command-line arguments to the eventfd file descriptor.
341 When the parent has finished sleeping,
342 it reads from the eventfd file descriptor.
343
344 The following shell session shows a sample run of the program:
345 .in +4n
346 .nf
347
348 .RB "$" " ./a.out 1 2 4 7 14"
349 Child writing 1 to efd
350 Child writing 2 to efd
351 Child writing 4 to efd
352 Child writing 7 to efd
353 Child writing 14 to efd
354 Child completed write loop
355 Parent about to read
356 Parent read 28 (0x1c) from efd
357 .fi
358 .in
359 .SS Program source
360 \&
361 .nf
362 #include <sys/eventfd.h>
363 #include <unistd.h>
364 #include <stdlib.h>
365 #include <stdio.h>
366 #include <stdint.h>             /* Definition of uint64_t */
367
368 #define handle_error(msg) \\
369     do { perror(msg); exit(EXIT_FAILURE); } while (0)
370
371 int
372 main(int argc, char *argv[])
373 {
374     int efd, j;
375     uint64_t u;
376     ssize_t s;
377
378     if (argc < 2) {
379         fprintf(stderr, "Usage: %s <num>...\\n", argv[0]);
380         exit(EXIT_FAILURE);
381     }
382
383     efd = eventfd(0, 0);
384     if (efd == \-1)
385         handle_error("eventfd");
386
387     switch (fork()) {
388     case 0:
389         for (j = 1; j < argc; j++) {
390             printf("Child writing %s to efd\\n", argv[j]);
391             u = strtoull(argv[j], NULL, 0);
392                     /* strtoull() allows various bases */
393             s = write(efd, &u, sizeof(uint64_t));
394             if (s != sizeof(uint64_t))
395                 handle_error("write");
396         }
397         printf("Child completed write loop\\n");
398
399         exit(EXIT_SUCCESS);
400
401     default:
402         sleep(2);
403
404         printf("Parent about to read\\n");
405         s = read(efd, &u, sizeof(uint64_t));
406         if (s != sizeof(uint64_t))
407             handle_error("read");
408         printf("Parent read %llu (0x%llx) from efd\\n",
409                 (unsigned long long) u, (unsigned long long) u);
410         exit(EXIT_SUCCESS);
411
412     case \-1:
413         handle_error("fork");
414     }
415 }
416 .fi
417 .SH SEE ALSO
418 .BR futex (2),
419 .BR pipe (2),
420 .BR poll (2),
421 .BR read (2),
422 .BR select (2),
423 .BR signalfd (2),
424 .BR timerfd_create (2),
425 .BR write (2),
426 .BR epoll (7),
427 .BR sem_overview (7)
428 .SH COLOPHON
429 This page is part of release 3.67 of the Linux
430 .I man-pages
431 project.
432 A description of the project,
433 information about reporting bugs,
434 and the latest version of this page,
435 can be found at
436 \%http://www.kernel.org/doc/man\-pages/.