]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man2/epoll_create.2
getent.1, intro.1, time.1, _exit.2, _syscall.2, accept.2, access.2, acct.2, adjtimex...
[thirdparty/man-pages.git] / man2 / epoll_create.2
1 .\"
2 .\" epoll by Davide Libenzi ( efficient event notification retrieval )
3 .\" Copyright (C) 2003 Davide Libenzi
4 .\"
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 License
16 .\" along with this program; if not, write to the Free Software
17 .\" Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 .\"
19 .\" Davide Libenzi <davidel@xmailserver.org>
20 .\"
21 .\" Modified 2004-06-17 by Michael Kerrisk <mtk.manpages@gmail.com>
22 .\" Modified 2005-04-04 by Marko Kohtala <marko.kohtala@gmail.com>
23 .\" 2008-10-10, mtk: add description of epoll_create1()
24 .\"
25 .TH EPOLL_CREATE 2 2012-04-15 "Linux" "Linux Programmer's Manual"
26 .SH NAME
27 epoll_create, epoll_create1 \- open an epoll file descriptor
28 .SH SYNOPSIS
29 .nf
30 .B #include <sys/epoll.h>
31 .sp
32 .BI "int epoll_create(int " size );
33 .BI "int epoll_create1(int " flags );
34 .fi
35 .SH DESCRIPTION
36 .BR epoll_create ()
37 creates an
38 .BR epoll (7)
39 instance.
40 Since Linux 2.6.8, the
41 .I size
42 argument is ignored, but must be greater than zero; see NOTES below.
43
44 .BR epoll_create ()
45 returns a file descriptor referring to the new epoll instance.
46 This file descriptor is used for all the subsequent calls to the
47 .B epoll
48 interface.
49 When no longer required, the file descriptor returned by
50 .BR epoll_create ()
51 should be closed by using
52 .BR close (2).
53 When all file descriptors referring to an epoll instance have been closed,
54 the kernel destroys the instance
55 and releases the associated resources for reuse.
56 .SS epoll_create1()
57 If
58 .I flags
59 is 0, then, other than the fact that the obsolete
60 .I size
61 argument is dropped,
62 .BR epoll_create1 ()
63 is the same as
64 .BR epoll_create ().
65 The following value can be included in
66 .IR flags
67 to obtain different behavior:
68 .TP
69 .B EPOLL_CLOEXEC
70 Set the close-on-exec
71 .RB ( FD_CLOEXEC )
72 flag on the new file descriptor.
73 See the description of the
74 .B O_CLOEXEC
75 flag in
76 .BR open (2)
77 for reasons why this may be useful.
78 .SH RETURN VALUE
79 On success,
80 these system calls
81 return a nonnegative file descriptor.
82 On error, \-1 is returned, and
83 .I errno
84 is set to indicate the error.
85 .SH ERRORS
86 .TP
87 .B EINVAL
88 .I size
89 is not positive.
90 .TP
91 .B EINVAL
92 .RB ( epoll_create1 ())
93 Invalid value specified in
94 .IR flags .
95 .TP
96 .B EMFILE
97 The per-user limit on the number of epoll instances imposed by
98 .I /proc/sys/fs/epoll/max_user_instances
99 was encountered.
100 See
101 .BR epoll (7)
102 for further details.
103 .TP
104 .B ENFILE
105 The system limit on the total number of open files has been reached.
106 .TP
107 .B ENOMEM
108 There was insufficient memory to create the kernel object.
109 .SH VERSIONS
110 .BR epoll_create ()
111 was added to the kernel in version 2.6.
112 Library support is provided in glibc starting with version 2.3.2.
113
114 .\" To be precise: kernel 2.5.44.
115 .\" The interface should be finalized by Linux kernel 2.5.66.
116 .BR epoll_create1 ()
117 was added to the kernel in version 2.6.27.
118 Library support is provided in glibc starting with version 2.9.
119 .SH CONFORMING TO
120 .BR epoll_create ()
121 is Linux-specific.
122 .SH NOTES
123 In the initial
124 .BR epoll_create ()
125 implementation, the
126 .I size
127 argument informed the kernel of the number of file descriptors
128 that the caller expected to add to the
129 .B epoll
130 instance.
131 The kernel used this information as a hint for the amount of
132 space to initially allocate in internal data structures describing events.
133 (If necessary, the kernel would allocate more space
134 if the caller's usage exceeded the hint given in
135 .IR size .)
136 Nowadays,
137 this hint is no longer required
138 (the kernel dynamically sizes the required data structures
139 without needing the hint), but
140 .I size
141 must still be greater than zero,
142 in order to ensure backward compatibility when new
143 .B epoll
144 applications are run on older kernels.
145 .SH SEE ALSO
146 .BR close (2),
147 .BR epoll_ctl (2),
148 .BR epoll_wait (2),
149 .BR epoll (7)