ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev.3
(Generate patch)

Comparing libev/ev.3 (file contents):
Revision 1.51 by root, Wed Dec 12 17:55:30 2007 UTC vs.
Revision 1.60 by root, Mon Jan 28 12:23:02 2008 UTC

1.\" Automatically generated by Pod::Man v1.37, Pod::Parser v1.35 1.\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05)
2.\" 2.\"
3.\" Standard preamble: 3.\" Standard preamble:
4.\" ======================================================================== 4.\" ========================================================================
5.de Sh \" Subsection heading 5.de Sh \" Subsection heading
6.br 6.br
23.ft R 23.ft R
24.fi 24.fi
25.. 25..
26.\" Set up some character translations and predefined strings. \*(-- will 26.\" Set up some character translations and predefined strings. \*(-- will
27.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left 27.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
28.\" double quote, and \*(R" will give a right double quote. | will give a 28.\" double quote, and \*(R" will give a right double quote. \*(C+ will
29.\" real vertical bar. \*(C+ will give a nicer C++. Capital omega is used to 29.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
30.\" do unbreakable dashes and therefore won't be available. \*(C` and \*(C' 30.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
31.\" expand to `' in nroff, nothing in troff, for use with C<>. 31.\" nothing in troff, for use with C<>.
32.tr \(*W-|\(bv\*(Tr 32.tr \(*W-
33.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' 33.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
34.ie n \{\ 34.ie n \{\
35. ds -- \(*W- 35. ds -- \(*W-
36. ds PI pi 36. ds PI pi
37. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 37. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
46. ds PI \(*p 46. ds PI \(*p
47. ds L" `` 47. ds L" ``
48. ds R" '' 48. ds R" ''
49'br\} 49'br\}
50.\" 50.\"
51.\" Escape single quotes in literal strings from groff's Unicode transform.
52.ie \n(.g .ds Aq \(aq
53.el .ds Aq '
54.\"
51.\" If the F register is turned on, we'll generate index entries on stderr for 55.\" If the F register is turned on, we'll generate index entries on stderr for
52.\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index 56.\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index
53.\" entries marked with X<> in POD. Of course, you'll have to process the 57.\" entries marked with X<> in POD. Of course, you'll have to process the
54.\" output yourself in some meaningful fashion. 58.\" output yourself in some meaningful fashion.
55.if \nF \{\ 59.ie \nF \{\
56. de IX 60. de IX
57. tm Index:\\$1\t\\n%\t"\\$2" 61. tm Index:\\$1\t\\n%\t"\\$2"
58.. 62..
59. nr % 0 63. nr % 0
60. rr F 64. rr F
61.\} 65.\}
62.\" 66.el \{\
63.\" For nroff, turn off justification. Always turn off hyphenation; it makes 67. de IX
64.\" way too many mistakes in technical documents. 68..
65.hy 0 69.\}
66.if n .na
67.\" 70.\"
68.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). 71.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
69.\" Fear. Run. Save yourself. No user-serviceable parts. 72.\" Fear. Run. Save yourself. No user-serviceable parts.
70. \" fudge factors for nroff and troff 73. \" fudge factors for nroff and troff
71.if n \{\ 74.if n \{\
126. ds Ae AE 129. ds Ae AE
127.\} 130.\}
128.rm #[ #] #H #V #F C 131.rm #[ #] #H #V #F C
129.\" ======================================================================== 132.\" ========================================================================
130.\" 133.\"
131.IX Title ""<STANDARD INPUT>" 1" 134.IX Title "EV 1"
132.TH "<STANDARD INPUT>" 1 "2007-12-12" "perl v5.8.8" "User Contributed Perl Documentation" 135.TH EV 1 "2008-01-28" "perl v5.10.0" "User Contributed Perl Documentation"
136.\" For nroff, turn off justification. Always turn off hyphenation; it makes
137.\" way too many mistakes in technical documents.
138.if n .ad l
139.nh
133.SH "NAME" 140.SH "NAME"
134libev \- a high performance full\-featured event loop written in C 141libev \- a high performance full\-featured event loop written in C
135.SH "SYNOPSIS" 142.SH "SYNOPSIS"
136.IX Header "SYNOPSIS" 143.IX Header "SYNOPSIS"
137.Vb 1 144.Vb 1
138\& #include <ev.h> 145\& #include <ev.h>
139.Ve 146.Ve
140.SH "EXAMPLE PROGRAM" 147.Sh "\s-1EXAMPLE\s0 \s-1PROGRAM\s0"
141.IX Header "EXAMPLE PROGRAM" 148.IX Subsection "EXAMPLE PROGRAM"
142.Vb 1 149.Vb 1
143\& #include <ev.h> 150\& #include <ev.h>
144.Ve 151\&
145.PP
146.Vb 2
147\& ev_io stdin_watcher; 152\& ev_io stdin_watcher;
148\& ev_timer timeout_watcher; 153\& ev_timer timeout_watcher;
149.Ve 154\&
150.PP
151.Vb 8
152\& /* called when data readable on stdin */ 155\& /* called when data readable on stdin */
153\& static void 156\& static void
154\& stdin_cb (EV_P_ struct ev_io *w, int revents) 157\& stdin_cb (EV_P_ struct ev_io *w, int revents)
155\& { 158\& {
156\& /* puts ("stdin ready"); */ 159\& /* puts ("stdin ready"); */
157\& ev_io_stop (EV_A_ w); /* just a syntax example */ 160\& ev_io_stop (EV_A_ w); /* just a syntax example */
158\& ev_unloop (EV_A_ EVUNLOOP_ALL); /* leave all loop calls */ 161\& ev_unloop (EV_A_ EVUNLOOP_ALL); /* leave all loop calls */
159\& } 162\& }
160.Ve 163\&
161.PP
162.Vb 6
163\& static void 164\& static void
164\& timeout_cb (EV_P_ struct ev_timer *w, int revents) 165\& timeout_cb (EV_P_ struct ev_timer *w, int revents)
165\& { 166\& {
166\& /* puts ("timeout"); */ 167\& /* puts ("timeout"); */
167\& ev_unloop (EV_A_ EVUNLOOP_ONE); /* leave one loop call */ 168\& ev_unloop (EV_A_ EVUNLOOP_ONE); /* leave one loop call */
168\& } 169\& }
169.Ve 170\&
170.PP
171.Vb 4
172\& int 171\& int
173\& main (void) 172\& main (void)
174\& { 173\& {
175\& struct ev_loop *loop = ev_default_loop (0); 174\& struct ev_loop *loop = ev_default_loop (0);
176.Ve 175\&
177.PP
178.Vb 3
179\& /* initialise an io watcher, then start it */ 176\& /* initialise an io watcher, then start it */
180\& ev_io_init (&stdin_watcher, stdin_cb, /*STDIN_FILENO*/ 0, EV_READ); 177\& ev_io_init (&stdin_watcher, stdin_cb, /*STDIN_FILENO*/ 0, EV_READ);
181\& ev_io_start (loop, &stdin_watcher); 178\& ev_io_start (loop, &stdin_watcher);
182.Ve 179\&
183.PP
184.Vb 3
185\& /* simple non-repeating 5.5 second timeout */ 180\& /* simple non\-repeating 5.5 second timeout */
186\& ev_timer_init (&timeout_watcher, timeout_cb, 5.5, 0.); 181\& ev_timer_init (&timeout_watcher, timeout_cb, 5.5, 0.);
187\& ev_timer_start (loop, &timeout_watcher); 182\& ev_timer_start (loop, &timeout_watcher);
188.Ve 183\&
189.PP
190.Vb 2
191\& /* loop till timeout or data ready */ 184\& /* loop till timeout or data ready */
192\& ev_loop (loop, 0); 185\& ev_loop (loop, 0);
193.Ve 186\&
194.PP
195.Vb 2
196\& return 0; 187\& return 0;
197\& } 188\& }
198.Ve 189.Ve
199.SH "DESCRIPTION" 190.SH "DESCRIPTION"
200.IX Header "DESCRIPTION" 191.IX Header "DESCRIPTION"
201The newest version of this document is also available as a html-formatted 192The newest version of this document is also available as a html-formatted
202web page you might find easier to navigate when reading it for the first 193web page you might find easier to navigate when reading it for the first
203time: <http://cvs.schmorp.de/libev/ev.html>. 194time: <http://cvs.schmorp.de/libev/ev.html>.
204.PP 195.PP
205Libev is an event loop: you register interest in certain events (such as a 196Libev is an event loop: you register interest in certain events (such as a
206file descriptor being readable or a timeout occuring), and it will manage 197file descriptor being readable or a timeout occurring), and it will manage
207these event sources and provide your program with events. 198these event sources and provide your program with events.
208.PP 199.PP
209To do this, it must take more or less complete control over your process 200To do this, it must take more or less complete control over your process
210(or thread) by executing the \fIevent loop\fR handler, and will then 201(or thread) by executing the \fIevent loop\fR handler, and will then
211communicate events via a callback mechanism. 202communicate events via a callback mechanism.
212.PP 203.PP
213You register interest in certain events by registering so-called \fIevent 204You register interest in certain events by registering so-called \fIevent
214watchers\fR, which are relatively small C structures you initialise with the 205watchers\fR, which are relatively small C structures you initialise with the
215details of the event, and then hand it over to libev by \fIstarting\fR the 206details of the event, and then hand it over to libev by \fIstarting\fR the
216watcher. 207watcher.
217.SH "FEATURES" 208.Sh "\s-1FEATURES\s0"
218.IX Header "FEATURES" 209.IX Subsection "FEATURES"
219Libev supports \f(CW\*(C`select\*(C'\fR, \f(CW\*(C`poll\*(C'\fR, the Linux-specific \f(CW\*(C`epoll\*(C'\fR, the 210Libev supports \f(CW\*(C`select\*(C'\fR, \f(CW\*(C`poll\*(C'\fR, the Linux-specific \f(CW\*(C`epoll\*(C'\fR, the
220BSD-specific \f(CW\*(C`kqueue\*(C'\fR and the Solaris-specific event port mechanisms 211BSD-specific \f(CW\*(C`kqueue\*(C'\fR and the Solaris-specific event port mechanisms
221for file descriptor events (\f(CW\*(C`ev_io\*(C'\fR), the Linux \f(CW\*(C`inotify\*(C'\fR interface 212for file descriptor events (\f(CW\*(C`ev_io\*(C'\fR), the Linux \f(CW\*(C`inotify\*(C'\fR interface
222(for \f(CW\*(C`ev_stat\*(C'\fR), relative timers (\f(CW\*(C`ev_timer\*(C'\fR), absolute timers 213(for \f(CW\*(C`ev_stat\*(C'\fR), relative timers (\f(CW\*(C`ev_timer\*(C'\fR), absolute timers
223with customised rescheduling (\f(CW\*(C`ev_periodic\*(C'\fR), synchronous signals 214with customised rescheduling (\f(CW\*(C`ev_periodic\*(C'\fR), synchronous signals
228(\f(CW\*(C`ev_fork\*(C'\fR). 219(\f(CW\*(C`ev_fork\*(C'\fR).
229.PP 220.PP
230It also is quite fast (see this 221It also is quite fast (see this
231benchmark comparing it to libevent 222benchmark comparing it to libevent
232for example). 223for example).
233.SH "CONVENTIONS" 224.Sh "\s-1CONVENTIONS\s0"
234.IX Header "CONVENTIONS" 225.IX Subsection "CONVENTIONS"
235Libev is very configurable. In this manual the default configuration will 226Libev is very configurable. In this manual the default configuration will
236be described, which supports multiple event loops. For more info about 227be described, which supports multiple event loops. For more info about
237various configuration options please have a look at \fB\s-1EMBED\s0\fR section in 228various configuration options please have a look at \fB\s-1EMBED\s0\fR section in
238this manual. If libev was configured without support for multiple event 229this manual. If libev was configured without support for multiple event
239loops, then all functions taking an initial argument of name \f(CW\*(C`loop\*(C'\fR 230loops, then all functions taking an initial argument of name \f(CW\*(C`loop\*(C'\fR
240(which is always of type \f(CW\*(C`struct ev_loop *\*(C'\fR) will not have this argument. 231(which is always of type \f(CW\*(C`struct ev_loop *\*(C'\fR) will not have this argument.
241.SH "TIME REPRESENTATION" 232.Sh "\s-1TIME\s0 \s-1REPRESENTATION\s0"
242.IX Header "TIME REPRESENTATION" 233.IX Subsection "TIME REPRESENTATION"
243Libev represents time as a single floating point number, representing the 234Libev represents time as a single floating point number, representing the
244(fractional) number of seconds since the (\s-1POSIX\s0) epoch (somewhere near 235(fractional) number of seconds since the (\s-1POSIX\s0) epoch (somewhere near
245the beginning of 1970, details are complicated, don't ask). This type is 236the beginning of 1970, details are complicated, don't ask). This type is
246called \f(CW\*(C`ev_tstamp\*(C'\fR, which is what you should use too. It usually aliases 237called \f(CW\*(C`ev_tstamp\*(C'\fR, which is what you should use too. It usually aliases
247to the \f(CW\*(C`double\*(C'\fR type in C, and when you need to do any calculations on 238to the \f(CW\*(C`double\*(C'\fR type in C, and when you need to do any calculations on
248it, you should treat it as such. 239it, you should treat it as some floatingpoint value. Unlike the name
240component \f(CW\*(C`stamp\*(C'\fR might indicate, it is also used for time differences
241throughout libev.
249.SH "GLOBAL FUNCTIONS" 242.SH "GLOBAL FUNCTIONS"
250.IX Header "GLOBAL FUNCTIONS" 243.IX Header "GLOBAL FUNCTIONS"
251These functions can be called anytime, even before initialising the 244These functions can be called anytime, even before initialising the
252library in any way. 245library in any way.
253.IP "ev_tstamp ev_time ()" 4 246.IP "ev_tstamp ev_time ()" 4
254.IX Item "ev_tstamp ev_time ()" 247.IX Item "ev_tstamp ev_time ()"
255Returns the current time as libev would use it. Please note that the 248Returns the current time as libev would use it. Please note that the
256\&\f(CW\*(C`ev_now\*(C'\fR function is usually faster and also often returns the timestamp 249\&\f(CW\*(C`ev_now\*(C'\fR function is usually faster and also often returns the timestamp
257you actually want to know. 250you actually want to know.
251.IP "ev_sleep (ev_tstamp interval)" 4
252.IX Item "ev_sleep (ev_tstamp interval)"
253Sleep for the given interval: The current thread will be blocked until
254either it is interrupted or the given time interval has passed. Basically
255this is a subsecond-resolution \f(CW\*(C`sleep ()\*(C'\fR.
258.IP "int ev_version_major ()" 4 256.IP "int ev_version_major ()" 4
259.IX Item "int ev_version_major ()" 257.IX Item "int ev_version_major ()"
260.PD 0 258.PD 0
261.IP "int ev_version_minor ()" 4 259.IP "int ev_version_minor ()" 4
262.IX Item "int ev_version_minor ()" 260.IX Item "int ev_version_minor ()"
306(assuming you know what you are doing). This is the set of backends that 304(assuming you know what you are doing). This is the set of backends that
307libev will probe for if you specify no backends explicitly. 305libev will probe for if you specify no backends explicitly.
308.IP "unsigned int ev_embeddable_backends ()" 4 306.IP "unsigned int ev_embeddable_backends ()" 4
309.IX Item "unsigned int ev_embeddable_backends ()" 307.IX Item "unsigned int ev_embeddable_backends ()"
310Returns the set of backends that are embeddable in other event loops. This 308Returns the set of backends that are embeddable in other event loops. This
311is the theoretical, all\-platform, value. To find which backends 309is the theoretical, all-platform, value. To find which backends
312might be supported on the current system, you would need to look at 310might be supported on the current system, you would need to look at
313\&\f(CW\*(C`ev_embeddable_backends () & ev_supported_backends ()\*(C'\fR, likewise for 311\&\f(CW\*(C`ev_embeddable_backends () & ev_supported_backends ()\*(C'\fR, likewise for
314recommended ones. 312recommended ones.
315.Sp 313.Sp
316See the description of \f(CW\*(C`ev_embed\*(C'\fR watchers for more info. 314See the description of \f(CW\*(C`ev_embed\*(C'\fR watchers for more info.
335\& persistent_realloc (void *ptr, size_t size) 333\& persistent_realloc (void *ptr, size_t size)
336\& { 334\& {
337\& for (;;) 335\& for (;;)
338\& { 336\& {
339\& void *newptr = realloc (ptr, size); 337\& void *newptr = realloc (ptr, size);
340.Ve 338\&
341.Sp
342.Vb 2
343\& if (newptr) 339\& if (newptr)
344\& return newptr; 340\& return newptr;
345.Ve 341\&
346.Sp
347.Vb 3
348\& sleep (60); 342\& sleep (60);
349\& } 343\& }
350\& } 344\& }
351.Ve 345\&
352.Sp
353.Vb 2
354\& ... 346\& ...
355\& ev_set_allocator (persistent_realloc); 347\& ev_set_allocator (persistent_realloc);
356.Ve 348.Ve
357.IP "ev_set_syserr_cb (void (*cb)(const char *msg));" 4 349.IP "ev_set_syserr_cb (void (*cb)(const char *msg));" 4
358.IX Item "ev_set_syserr_cb (void (*cb)(const char *msg));" 350.IX Item "ev_set_syserr_cb (void (*cb)(const char *msg));"
371\& fatal_error (const char *msg) 363\& fatal_error (const char *msg)
372\& { 364\& {
373\& perror (msg); 365\& perror (msg);
374\& abort (); 366\& abort ();
375\& } 367\& }
376.Ve 368\&
377.Sp
378.Vb 2
379\& ... 369\& ...
380\& ev_set_syserr_cb (fatal_error); 370\& ev_set_syserr_cb (fatal_error);
381.Ve 371.Ve
382.SH "FUNCTIONS CONTROLLING THE EVENT LOOP" 372.SH "FUNCTIONS CONTROLLING THE EVENT LOOP"
383.IX Header "FUNCTIONS CONTROLLING THE EVENT LOOP" 373.IX Header "FUNCTIONS CONTROLLING THE EVENT LOOP"
398false. If it already was initialised it simply returns it (and ignores the 388false. If it already was initialised it simply returns it (and ignores the
399flags. If that is troubling you, check \f(CW\*(C`ev_backend ()\*(C'\fR afterwards). 389flags. If that is troubling you, check \f(CW\*(C`ev_backend ()\*(C'\fR afterwards).
400.Sp 390.Sp
401If you don't know what event loop to use, use the one returned from this 391If you don't know what event loop to use, use the one returned from this
402function. 392function.
393.Sp
394The default loop is the only loop that can handle \f(CW\*(C`ev_signal\*(C'\fR and
395\&\f(CW\*(C`ev_child\*(C'\fR watchers, and to do this, it always registers a handler
396for \f(CW\*(C`SIGCHLD\*(C'\fR. If this is a problem for your app you can either
397create a dynamic loop with \f(CW\*(C`ev_loop_new\*(C'\fR that doesn't do that, or you
398can simply overwrite the \f(CW\*(C`SIGCHLD\*(C'\fR signal handler \fIafter\fR calling
399\&\f(CW\*(C`ev_default_init\*(C'\fR.
403.Sp 400.Sp
404The flags argument can be used to specify special behaviour or specific 401The flags argument can be used to specify special behaviour or specific
405backends to use, and is usually specified as \f(CW0\fR (or \f(CW\*(C`EVFLAG_AUTO\*(C'\fR). 402backends to use, and is usually specified as \f(CW0\fR (or \f(CW\*(C`EVFLAG_AUTO\*(C'\fR).
406.Sp 403.Sp
407The following flags are supported: 404The following flags are supported:
444.el .IP "\f(CWEVBACKEND_SELECT\fR (value 1, portable select backend)" 4 441.el .IP "\f(CWEVBACKEND_SELECT\fR (value 1, portable select backend)" 4
445.IX Item "EVBACKEND_SELECT (value 1, portable select backend)" 442.IX Item "EVBACKEND_SELECT (value 1, portable select backend)"
446This is your standard \fIselect\fR\|(2) backend. Not \fIcompletely\fR standard, as 443This is your standard \fIselect\fR\|(2) backend. Not \fIcompletely\fR standard, as
447libev tries to roll its own fd_set with no limits on the number of fds, 444libev tries to roll its own fd_set with no limits on the number of fds,
448but if that fails, expect a fairly low limit on the number of fds when 445but if that fails, expect a fairly low limit on the number of fds when
449using this backend. It doesn't scale too well (O(highest_fd)), but its usually 446using this backend. It doesn't scale too well (O(highest_fd)), but its
450the fastest backend for a low number of fds. 447usually the fastest backend for a low number of (low-numbered :) fds.
448.Sp
449To get good performance out of this backend you need a high amount of
450parallelity (most of the file descriptors should be busy). If you are
451writing a server, you should \f(CW\*(C`accept ()\*(C'\fR in a loop to accept as many
452connections as possible during one iteration. You might also want to have
453a look at \f(CW\*(C`ev_set_io_collect_interval ()\*(C'\fR to increase the amount of
454readyness notifications you get per iteration.
451.ie n .IP """EVBACKEND_POLL"" (value 2, poll backend, available everywhere except on windows)" 4 455.ie n .IP """EVBACKEND_POLL"" (value 2, poll backend, available everywhere except on windows)" 4
452.el .IP "\f(CWEVBACKEND_POLL\fR (value 2, poll backend, available everywhere except on windows)" 4 456.el .IP "\f(CWEVBACKEND_POLL\fR (value 2, poll backend, available everywhere except on windows)" 4
453.IX Item "EVBACKEND_POLL (value 2, poll backend, available everywhere except on windows)" 457.IX Item "EVBACKEND_POLL (value 2, poll backend, available everywhere except on windows)"
454And this is your standard \fIpoll\fR\|(2) backend. It's more complicated than 458And this is your standard \fIpoll\fR\|(2) backend. It's more complicated
455select, but handles sparse fds better and has no artificial limit on the 459than select, but handles sparse fds better and has no artificial
456number of fds you can use (except it will slow down considerably with a 460limit on the number of fds you can use (except it will slow down
457lot of inactive fds). It scales similarly to select, i.e. O(total_fds). 461considerably with a lot of inactive fds). It scales similarly to select,
462i.e. O(total_fds). See the entry for \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR, above, for
463performance tips.
458.ie n .IP """EVBACKEND_EPOLL"" (value 4, Linux)" 4 464.ie n .IP """EVBACKEND_EPOLL"" (value 4, Linux)" 4
459.el .IP "\f(CWEVBACKEND_EPOLL\fR (value 4, Linux)" 4 465.el .IP "\f(CWEVBACKEND_EPOLL\fR (value 4, Linux)" 4
460.IX Item "EVBACKEND_EPOLL (value 4, Linux)" 466.IX Item "EVBACKEND_EPOLL (value 4, Linux)"
461For few fds, this backend is a bit little slower than poll and select, 467For few fds, this backend is a bit little slower than poll and select,
462but it scales phenomenally better. While poll and select usually scale like 468but it scales phenomenally better. While poll and select usually scale
463O(total_fds) where n is the total number of fds (or the highest fd), epoll scales 469like O(total_fds) where n is the total number of fds (or the highest fd),
464either O(1) or O(active_fds). 470epoll scales either O(1) or O(active_fds). The epoll design has a number
471of shortcomings, such as silently dropping events in some hard-to-detect
472cases and rewiring a syscall per fd change, no fork support and bad
473support for dup.
465.Sp 474.Sp
466While stopping and starting an I/O watcher in the same iteration will 475While stopping, setting and starting an I/O watcher in the same iteration
467result in some caching, there is still a syscall per such incident 476will result in some caching, there is still a syscall per such incident
468(because the fd could point to a different file description now), so its 477(because the fd could point to a different file description now), so its
469best to avoid that. Also, \fIdup()\fRed file descriptors might not work very 478best to avoid that. Also, \f(CW\*(C`dup ()\*(C'\fR'ed file descriptors might not work
470well if you register events for both fds. 479very well if you register events for both fds.
471.Sp 480.Sp
472Please note that epoll sometimes generates spurious notifications, so you 481Please note that epoll sometimes generates spurious notifications, so you
473need to use non-blocking I/O or other means to avoid blocking when no data 482need to use non-blocking I/O or other means to avoid blocking when no data
474(or space) is available. 483(or space) is available.
484.Sp
485Best performance from this backend is achieved by not unregistering all
486watchers for a file descriptor until it has been closed, if possible, i.e.
487keep at least one watcher active per fd at all times.
488.Sp
489While nominally embeddeble in other event loops, this feature is broken in
490all kernel versions tested so far.
475.ie n .IP """EVBACKEND_KQUEUE"" (value 8, most \s-1BSD\s0 clones)" 4 491.ie n .IP """EVBACKEND_KQUEUE"" (value 8, most \s-1BSD\s0 clones)" 4
476.el .IP "\f(CWEVBACKEND_KQUEUE\fR (value 8, most \s-1BSD\s0 clones)" 4 492.el .IP "\f(CWEVBACKEND_KQUEUE\fR (value 8, most \s-1BSD\s0 clones)" 4
477.IX Item "EVBACKEND_KQUEUE (value 8, most BSD clones)" 493.IX Item "EVBACKEND_KQUEUE (value 8, most BSD clones)"
478Kqueue deserves special mention, as at the time of this writing, it 494Kqueue deserves special mention, as at the time of this writing, it
479was broken on all BSDs except NetBSD (usually it doesn't work with 495was broken on all BSDs except NetBSD (usually it doesn't work reliably
480anything but sockets and pipes, except on Darwin, where of course its 496with anything but sockets and pipes, except on Darwin, where of course
481completely useless). For this reason its not being \*(L"autodetected\*(R" 497it's completely useless). For this reason it's not being \*(L"autodetected\*(R"
482unless you explicitly specify it explicitly in the flags (i.e. using 498unless you explicitly specify it explicitly in the flags (i.e. using
483\&\f(CW\*(C`EVBACKEND_KQUEUE\*(C'\fR). 499\&\f(CW\*(C`EVBACKEND_KQUEUE\*(C'\fR) or libev was compiled on a known-to-be-good (\-enough)
500system like NetBSD.
501.Sp
502You still can embed kqueue into a normal poll or select backend and use it
503only for sockets (after having made sure that sockets work with kqueue on
504the target platform). See \f(CW\*(C`ev_embed\*(C'\fR watchers for more info.
484.Sp 505.Sp
485It scales in the same way as the epoll backend, but the interface to the 506It scales in the same way as the epoll backend, but the interface to the
486kernel is more efficient (which says nothing about its actual speed, of 507kernel is more efficient (which says nothing about its actual speed, of
487course). While starting and stopping an I/O watcher does not cause an 508course). While stopping, setting and starting an I/O watcher does never
488extra syscall as with epoll, it still adds up to four event changes per 509cause an extra syscall as with \f(CW\*(C`EVBACKEND_EPOLL\*(C'\fR, it still adds up to
489incident, so its best to avoid that. 510two event changes per incident, support for \f(CW\*(C`fork ()\*(C'\fR is very bad and it
511drops fds silently in similarly hard-to-detect cases.
512.Sp
513This backend usually performs well under most conditions.
514.Sp
515While nominally embeddable in other event loops, this doesn't work
516everywhere, so you might need to test for this. And since it is broken
517almost everywhere, you should only use it when you have a lot of sockets
518(for which it usually works), by embedding it into another event loop
519(e.g. \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or \f(CW\*(C`EVBACKEND_POLL\*(C'\fR) and using it only for
520sockets.
490.ie n .IP """EVBACKEND_DEVPOLL"" (value 16, Solaris 8)" 4 521.ie n .IP """EVBACKEND_DEVPOLL"" (value 16, Solaris 8)" 4
491.el .IP "\f(CWEVBACKEND_DEVPOLL\fR (value 16, Solaris 8)" 4 522.el .IP "\f(CWEVBACKEND_DEVPOLL\fR (value 16, Solaris 8)" 4
492.IX Item "EVBACKEND_DEVPOLL (value 16, Solaris 8)" 523.IX Item "EVBACKEND_DEVPOLL (value 16, Solaris 8)"
493This is not implemented yet (and might never be). 524This is not implemented yet (and might never be, unless you send me an
525implementation). According to reports, \f(CW\*(C`/dev/poll\*(C'\fR only supports sockets
526and is not embeddable, which would limit the usefulness of this backend
527immensely.
494.ie n .IP """EVBACKEND_PORT"" (value 32, Solaris 10)" 4 528.ie n .IP """EVBACKEND_PORT"" (value 32, Solaris 10)" 4
495.el .IP "\f(CWEVBACKEND_PORT\fR (value 32, Solaris 10)" 4 529.el .IP "\f(CWEVBACKEND_PORT\fR (value 32, Solaris 10)" 4
496.IX Item "EVBACKEND_PORT (value 32, Solaris 10)" 530.IX Item "EVBACKEND_PORT (value 32, Solaris 10)"
497This uses the Solaris 10 port mechanism. As with everything on Solaris, 531This uses the Solaris 10 event port mechanism. As with everything on Solaris,
498it's really slow, but it still scales very well (O(active_fds)). 532it's really slow, but it still scales very well (O(active_fds)).
499.Sp 533.Sp
500Please note that solaris ports can result in a lot of spurious 534Please note that solaris event ports can deliver a lot of spurious
501notifications, so you need to use non-blocking I/O or other means to avoid 535notifications, so you need to use non-blocking I/O or other means to avoid
502blocking when no data (or space) is available. 536blocking when no data (or space) is available.
537.Sp
538While this backend scales well, it requires one system call per active
539file descriptor per loop iteration. For small and medium numbers of file
540descriptors a \*(L"slow\*(R" \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or \f(CW\*(C`EVBACKEND_POLL\*(C'\fR backend
541might perform better.
542.Sp
543On the positive side, ignoring the spurious readyness notifications, this
544backend actually performed to specification in all tests and is fully
545embeddable, which is a rare feat among the OS-specific backends.
503.ie n .IP """EVBACKEND_ALL""" 4 546.ie n .IP """EVBACKEND_ALL""" 4
504.el .IP "\f(CWEVBACKEND_ALL\fR" 4 547.el .IP "\f(CWEVBACKEND_ALL\fR" 4
505.IX Item "EVBACKEND_ALL" 548.IX Item "EVBACKEND_ALL"
506Try all backends (even potentially broken ones that wouldn't be tried 549Try all backends (even potentially broken ones that wouldn't be tried
507with \f(CW\*(C`EVFLAG_AUTO\*(C'\fR). Since this is a mask, you can do stuff such as 550with \f(CW\*(C`EVFLAG_AUTO\*(C'\fR). Since this is a mask, you can do stuff such as
508\&\f(CW\*(C`EVBACKEND_ALL & ~EVBACKEND_KQUEUE\*(C'\fR. 551\&\f(CW\*(C`EVBACKEND_ALL & ~EVBACKEND_KQUEUE\*(C'\fR.
552.Sp
553It is definitely not recommended to use this flag.
509.RE 554.RE
510.RS 4 555.RS 4
511.Sp 556.Sp
512If one or more of these are ored into the flags value, then only these 557If one or more of these are ored into the flags value, then only these
513backends will be tried (in the reverse order as given here). If none are 558backends will be tried (in the reverse order as listed here). If none are
514specified, most compiled-in backend will be tried, usually in reverse 559specified, all backends in \f(CW\*(C`ev_recommended_backends ()\*(C'\fR will be tried.
515order of their flag values :)
516.Sp 560.Sp
517The most typical usage is like this: 561The most typical usage is like this:
518.Sp 562.Sp
519.Vb 2 563.Vb 2
520\& if (!ev_default_loop (0)) 564\& if (!ev_default_loop (0))
555Destroys the default loop again (frees all memory and kernel state 599Destroys the default loop again (frees all memory and kernel state
556etc.). None of the active event watchers will be stopped in the normal 600etc.). None of the active event watchers will be stopped in the normal
557sense, so e.g. \f(CW\*(C`ev_is_active\*(C'\fR might still return true. It is your 601sense, so e.g. \f(CW\*(C`ev_is_active\*(C'\fR might still return true. It is your
558responsibility to either stop all watchers cleanly yoursef \fIbefore\fR 602responsibility to either stop all watchers cleanly yoursef \fIbefore\fR
559calling this function, or cope with the fact afterwards (which is usually 603calling this function, or cope with the fact afterwards (which is usually
560the easiest thing, youc na just ignore the watchers and/or \f(CW\*(C`free ()\*(C'\fR them 604the easiest thing, you can just ignore the watchers and/or \f(CW\*(C`free ()\*(C'\fR them
561for example). 605for example).
606.Sp
607Note that certain global state, such as signal state, will not be freed by
608this function, and related watchers (such as signal and child watchers)
609would need to be stopped manually.
610.Sp
611In general it is not advisable to call this function except in the
612rare occasion where you really need to free e.g. the signal handling
613pipe fds. If you need dynamically allocated loops it is better to use
614\&\f(CW\*(C`ev_loop_new\*(C'\fR and \f(CW\*(C`ev_loop_destroy\*(C'\fR).
562.IP "ev_loop_destroy (loop)" 4 615.IP "ev_loop_destroy (loop)" 4
563.IX Item "ev_loop_destroy (loop)" 616.IX Item "ev_loop_destroy (loop)"
564Like \f(CW\*(C`ev_default_destroy\*(C'\fR, but destroys an event loop created by an 617Like \f(CW\*(C`ev_default_destroy\*(C'\fR, but destroys an event loop created by an
565earlier call to \f(CW\*(C`ev_loop_new\*(C'\fR. 618earlier call to \f(CW\*(C`ev_loop_new\*(C'\fR.
566.IP "ev_default_fork ()" 4 619.IP "ev_default_fork ()" 4
567.IX Item "ev_default_fork ()" 620.IX Item "ev_default_fork ()"
621This function sets a flag that causes subsequent \f(CW\*(C`ev_loop\*(C'\fR iterations
568This function reinitialises the kernel state for backends that have 622to reinitialise the kernel state for backends that have one. Despite the
569one. Despite the name, you can call it anytime, but it makes most sense 623name, you can call it anytime, but it makes most sense after forking, in
570after forking, in either the parent or child process (or both, but that 624the child process (or both child and parent, but that again makes little
571again makes little sense). 625sense). You \fImust\fR call it in the child before using any of the libev
626functions, and it will only take effect at the next \f(CW\*(C`ev_loop\*(C'\fR iteration.
572.Sp 627.Sp
573You \fImust\fR call this function in the child process after forking if and 628On the other hand, you only need to call this function in the child
574only if you want to use the event library in both processes. If you just 629process if and only if you want to use the event library in the child. If
575fork+exec, you don't have to call it. 630you just fork+exec, you don't have to call it at all.
576.Sp 631.Sp
577The function itself is quite fast and it's usually not a problem to call 632The function itself is quite fast and it's usually not a problem to call
578it just in case after a fork. To make this easy, the function will fit in 633it just in case after a fork. To make this easy, the function will fit in
579quite nicely into a call to \f(CW\*(C`pthread_atfork\*(C'\fR: 634quite nicely into a call to \f(CW\*(C`pthread_atfork\*(C'\fR:
580.Sp 635.Sp
581.Vb 1 636.Vb 1
582\& pthread_atfork (0, 0, ev_default_fork); 637\& pthread_atfork (0, 0, ev_default_fork);
583.Ve 638.Ve
584.Sp
585At the moment, \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR and \f(CW\*(C`EVBACKEND_POLL\*(C'\fR are safe to use
586without calling this function, so if you force one of those backends you
587do not need to care.
588.IP "ev_loop_fork (loop)" 4 639.IP "ev_loop_fork (loop)" 4
589.IX Item "ev_loop_fork (loop)" 640.IX Item "ev_loop_fork (loop)"
590Like \f(CW\*(C`ev_default_fork\*(C'\fR, but acts on an event loop created by 641Like \f(CW\*(C`ev_default_fork\*(C'\fR, but acts on an event loop created by
591\&\f(CW\*(C`ev_loop_new\*(C'\fR. Yes, you have to call this on every allocated event loop 642\&\f(CW\*(C`ev_loop_new\*(C'\fR. Yes, you have to call this on every allocated event loop
592after fork, and how you do this is entirely your own problem. 643after fork, and how you do this is entirely your own problem.
607.IX Item "ev_tstamp ev_now (loop)" 658.IX Item "ev_tstamp ev_now (loop)"
608Returns the current \*(L"event loop time\*(R", which is the time the event loop 659Returns the current \*(L"event loop time\*(R", which is the time the event loop
609received events and started processing them. This timestamp does not 660received events and started processing them. This timestamp does not
610change as long as callbacks are being processed, and this is also the base 661change as long as callbacks are being processed, and this is also the base
611time used for relative timers. You can treat it as the timestamp of the 662time used for relative timers. You can treat it as the timestamp of the
612event occuring (or more correctly, libev finding out about it). 663event occurring (or more correctly, libev finding out about it).
613.IP "ev_loop (loop, int flags)" 4 664.IP "ev_loop (loop, int flags)" 4
614.IX Item "ev_loop (loop, int flags)" 665.IX Item "ev_loop (loop, int flags)"
615Finally, this is it, the event handler. This function usually is called 666Finally, this is it, the event handler. This function usually is called
616after you initialised all your watchers and you want to start handling 667after you initialised all your watchers and you want to start handling
617events. 668events.
637libev watchers. However, a pair of \f(CW\*(C`ev_prepare\*(C'\fR/\f(CW\*(C`ev_check\*(C'\fR watchers is 688libev watchers. However, a pair of \f(CW\*(C`ev_prepare\*(C'\fR/\f(CW\*(C`ev_check\*(C'\fR watchers is
638usually a better approach for this kind of thing. 689usually a better approach for this kind of thing.
639.Sp 690.Sp
640Here are the gory details of what \f(CW\*(C`ev_loop\*(C'\fR does: 691Here are the gory details of what \f(CW\*(C`ev_loop\*(C'\fR does:
641.Sp 692.Sp
642.Vb 19 693.Vb 10
643\& - Before the first iteration, call any pending watchers. 694\& \- Before the first iteration, call any pending watchers.
644\& * If there are no active watchers (reference count is zero), return. 695\& * If EVFLAG_FORKCHECK was used, check for a fork.
645\& - Queue all prepare watchers and then call all outstanding watchers. 696\& \- If a fork was detected, queue and call all fork watchers.
697\& \- Queue and call all prepare watchers.
646\& - If we have been forked, recreate the kernel state. 698\& \- If we have been forked, recreate the kernel state.
647\& - Update the kernel state with all outstanding changes. 699\& \- Update the kernel state with all outstanding changes.
648\& - Update the "event loop time". 700\& \- Update the "event loop time".
649\& - Calculate for how long to block. 701\& \- Calculate for how long to sleep or block, if at all
702\& (active idle watchers, EVLOOP_NONBLOCK or not having
703\& any active watchers at all will result in not sleeping).
704\& \- Sleep if the I/O and timer collect interval say so.
650\& - Block the process, waiting for any events. 705\& \- Block the process, waiting for any events.
651\& - Queue all outstanding I/O (fd) events. 706\& \- Queue all outstanding I/O (fd) events.
652\& - Update the "event loop time" and do time jump handling. 707\& \- Update the "event loop time" and do time jump handling.
653\& - Queue all outstanding timers. 708\& \- Queue all outstanding timers.
654\& - Queue all outstanding periodics. 709\& \- Queue all outstanding periodics.
655\& - If no events are pending now, queue all idle watchers. 710\& \- If no events are pending now, queue all idle watchers.
656\& - Queue all check watchers. 711\& \- Queue all check watchers.
657\& - Call all queued watchers in reverse order (i.e. check watchers first). 712\& \- Call all queued watchers in reverse order (i.e. check watchers first).
658\& Signals and child watchers are implemented as I/O watchers, and will 713\& Signals and child watchers are implemented as I/O watchers, and will
659\& be handled here by queueing them when their watcher gets executed. 714\& be handled here by queueing them when their watcher gets executed.
660\& - If ev_unloop has been called or EVLOOP_ONESHOT or EVLOOP_NONBLOCK 715\& \- If ev_unloop has been called, or EVLOOP_ONESHOT or EVLOOP_NONBLOCK
661\& were used, return, otherwise continue with step *. 716\& were used, or there are no active watchers, return, otherwise
717\& continue with step *.
662.Ve 718.Ve
663.Sp 719.Sp
664Example: Queue some jobs and then loop until no events are outsanding 720Example: Queue some jobs and then loop until no events are outstanding
665anymore. 721anymore.
666.Sp 722.Sp
667.Vb 4 723.Vb 4
668\& ... queue jobs here, make sure they register event watchers as long 724\& ... queue jobs here, make sure they register event watchers as long
669\& ... as they still have work to do (even an idle watcher will do..) 725\& ... as they still have work to do (even an idle watcher will do..)
674.IX Item "ev_unloop (loop, how)" 730.IX Item "ev_unloop (loop, how)"
675Can be used to make a call to \f(CW\*(C`ev_loop\*(C'\fR return early (but only after it 731Can be used to make a call to \f(CW\*(C`ev_loop\*(C'\fR return early (but only after it
676has processed all outstanding events). The \f(CW\*(C`how\*(C'\fR argument must be either 732has processed all outstanding events). The \f(CW\*(C`how\*(C'\fR argument must be either
677\&\f(CW\*(C`EVUNLOOP_ONE\*(C'\fR, which will make the innermost \f(CW\*(C`ev_loop\*(C'\fR call return, or 733\&\f(CW\*(C`EVUNLOOP_ONE\*(C'\fR, which will make the innermost \f(CW\*(C`ev_loop\*(C'\fR call return, or
678\&\f(CW\*(C`EVUNLOOP_ALL\*(C'\fR, which will make all nested \f(CW\*(C`ev_loop\*(C'\fR calls return. 734\&\f(CW\*(C`EVUNLOOP_ALL\*(C'\fR, which will make all nested \f(CW\*(C`ev_loop\*(C'\fR calls return.
735.Sp
736This \*(L"unloop state\*(R" will be cleared when entering \f(CW\*(C`ev_loop\*(C'\fR again.
679.IP "ev_ref (loop)" 4 737.IP "ev_ref (loop)" 4
680.IX Item "ev_ref (loop)" 738.IX Item "ev_ref (loop)"
681.PD 0 739.PD 0
682.IP "ev_unref (loop)" 4 740.IP "ev_unref (loop)" 4
683.IX Item "ev_unref (loop)" 741.IX Item "ev_unref (loop)"
689returning, \fIev_unref()\fR after starting, and \fIev_ref()\fR before stopping it. For 747returning, \fIev_unref()\fR after starting, and \fIev_ref()\fR before stopping it. For
690example, libev itself uses this for its internal signal pipe: It is not 748example, libev itself uses this for its internal signal pipe: It is not
691visible to the libev user and should not keep \f(CW\*(C`ev_loop\*(C'\fR from exiting if 749visible to the libev user and should not keep \f(CW\*(C`ev_loop\*(C'\fR from exiting if
692no event watchers registered by it are active. It is also an excellent 750no event watchers registered by it are active. It is also an excellent
693way to do this for generic recurring timers or from within third-party 751way to do this for generic recurring timers or from within third-party
694libraries. Just remember to \fIunref after start\fR and \fIref before stop\fR. 752libraries. Just remember to \fIunref after start\fR and \fIref before stop\fR
753(but only if the watcher wasn't active before, or was active before,
754respectively).
695.Sp 755.Sp
696Example: Create a signal watcher, but keep it from keeping \f(CW\*(C`ev_loop\*(C'\fR 756Example: Create a signal watcher, but keep it from keeping \f(CW\*(C`ev_loop\*(C'\fR
697running when nothing else is active. 757running when nothing else is active.
698.Sp 758.Sp
699.Vb 4 759.Vb 4
707.Sp 767.Sp
708.Vb 2 768.Vb 2
709\& ev_ref (loop); 769\& ev_ref (loop);
710\& ev_signal_stop (loop, &exitsig); 770\& ev_signal_stop (loop, &exitsig);
711.Ve 771.Ve
772.IP "ev_set_io_collect_interval (loop, ev_tstamp interval)" 4
773.IX Item "ev_set_io_collect_interval (loop, ev_tstamp interval)"
774.PD 0
775.IP "ev_set_timeout_collect_interval (loop, ev_tstamp interval)" 4
776.IX Item "ev_set_timeout_collect_interval (loop, ev_tstamp interval)"
777.PD
778These advanced functions influence the time that libev will spend waiting
779for events. Both are by default \f(CW0\fR, meaning that libev will try to
780invoke timer/periodic callbacks and I/O callbacks with minimum latency.
781.Sp
782Setting these to a higher value (the \f(CW\*(C`interval\*(C'\fR \fImust\fR be >= \f(CW0\fR)
783allows libev to delay invocation of I/O and timer/periodic callbacks to
784increase efficiency of loop iterations.
785.Sp
786The background is that sometimes your program runs just fast enough to
787handle one (or very few) event(s) per loop iteration. While this makes
788the program responsive, it also wastes a lot of \s-1CPU\s0 time to poll for new
789events, especially with backends like \f(CW\*(C`select ()\*(C'\fR which have a high
790overhead for the actual polling but can deliver many events at once.
791.Sp
792By setting a higher \fIio collect interval\fR you allow libev to spend more
793time collecting I/O events, so you can handle more events per iteration,
794at the cost of increasing latency. Timeouts (both \f(CW\*(C`ev_periodic\*(C'\fR and
795\&\f(CW\*(C`ev_timer\*(C'\fR) will be not affected. Setting this to a non-null value will
796introduce an additional \f(CW\*(C`ev_sleep ()\*(C'\fR call into most loop iterations.
797.Sp
798Likewise, by setting a higher \fItimeout collect interval\fR you allow libev
799to spend more time collecting timeouts, at the expense of increased
800latency (the watcher callback will be called later). \f(CW\*(C`ev_io\*(C'\fR watchers
801will not be affected. Setting this to a non-null value will not introduce
802any overhead in libev.
803.Sp
804Many (busy) programs can usually benefit by setting the io collect
805interval to a value near \f(CW0.1\fR or so, which is often enough for
806interactive servers (of course not for games), likewise for timeouts. It
807usually doesn't make much sense to set it to a lower value than \f(CW0.01\fR,
808as this approsaches the timing granularity of most systems.
712.SH "ANATOMY OF A WATCHER" 809.SH "ANATOMY OF A WATCHER"
713.IX Header "ANATOMY OF A WATCHER" 810.IX Header "ANATOMY OF A WATCHER"
714A watcher is a structure that you create and register to record your 811A watcher is a structure that you create and register to record your
715interest in some event. For instance, if you want to wait for \s-1STDIN\s0 to 812interest in some event. For instance, if you want to wait for \s-1STDIN\s0 to
716become readable, you would create an \f(CW\*(C`ev_io\*(C'\fR watcher for that: 813become readable, you would create an \f(CW\*(C`ev_io\*(C'\fR watcher for that:
719\& static void my_cb (struct ev_loop *loop, struct ev_io *w, int revents) 816\& static void my_cb (struct ev_loop *loop, struct ev_io *w, int revents)
720\& { 817\& {
721\& ev_io_stop (w); 818\& ev_io_stop (w);
722\& ev_unloop (loop, EVUNLOOP_ALL); 819\& ev_unloop (loop, EVUNLOOP_ALL);
723\& } 820\& }
724.Ve 821\&
725.PP
726.Vb 6
727\& struct ev_loop *loop = ev_default_loop (0); 822\& struct ev_loop *loop = ev_default_loop (0);
728\& struct ev_io stdin_watcher; 823\& struct ev_io stdin_watcher;
729\& ev_init (&stdin_watcher, my_cb); 824\& ev_init (&stdin_watcher, my_cb);
730\& ev_io_set (&stdin_watcher, STDIN_FILENO, EV_READ); 825\& ev_io_set (&stdin_watcher, STDIN_FILENO, EV_READ);
731\& ev_io_start (loop, &stdin_watcher); 826\& ev_io_start (loop, &stdin_watcher);
992In this case getting the pointer to \f(CW\*(C`my_biggy\*(C'\fR is a bit more complicated, 1087In this case getting the pointer to \f(CW\*(C`my_biggy\*(C'\fR is a bit more complicated,
993you need to use \f(CW\*(C`offsetof\*(C'\fR: 1088you need to use \f(CW\*(C`offsetof\*(C'\fR:
994.PP 1089.PP
995.Vb 1 1090.Vb 1
996\& #include <stddef.h> 1091\& #include <stddef.h>
997.Ve 1092\&
998.PP
999.Vb 6
1000\& static void 1093\& static void
1001\& t1_cb (EV_P_ struct ev_timer *w, int revents) 1094\& t1_cb (EV_P_ struct ev_timer *w, int revents)
1002\& { 1095\& {
1003\& struct my_biggy big = (struct my_biggy * 1096\& struct my_biggy big = (struct my_biggy *
1004\& (((char *)w) - offsetof (struct my_biggy, t1)); 1097\& (((char *)w) \- offsetof (struct my_biggy, t1));
1005\& } 1098\& }
1006.Ve 1099\&
1007.PP
1008.Vb 6
1009\& static void 1100\& static void
1010\& t2_cb (EV_P_ struct ev_timer *w, int revents) 1101\& t2_cb (EV_P_ struct ev_timer *w, int revents)
1011\& { 1102\& {
1012\& struct my_biggy big = (struct my_biggy * 1103\& struct my_biggy big = (struct my_biggy *
1013\& (((char *)w) - offsetof (struct my_biggy, t2)); 1104\& (((char *)w) \- offsetof (struct my_biggy, t2));
1014\& } 1105\& }
1015.Ve 1106.Ve
1016.SH "WATCHER TYPES" 1107.SH "WATCHER TYPES"
1017.IX Header "WATCHER TYPES" 1108.IX Header "WATCHER TYPES"
1018This section describes each watcher in detail, but will not repeat 1109This section describes each watcher in detail, but will not repeat
1041In general you can register as many read and/or write event watchers per 1132In general you can register as many read and/or write event watchers per
1042fd as you want (as long as you don't confuse yourself). Setting all file 1133fd as you want (as long as you don't confuse yourself). Setting all file
1043descriptors to non-blocking mode is also usually a good idea (but not 1134descriptors to non-blocking mode is also usually a good idea (but not
1044required if you know what you are doing). 1135required if you know what you are doing).
1045.PP 1136.PP
1046You have to be careful with dup'ed file descriptors, though. Some backends
1047(the linux epoll backend is a notable example) cannot handle dup'ed file
1048descriptors correctly if you register interest in two or more fds pointing
1049to the same underlying file/socket/etc. description (that is, they share
1050the same underlying \*(L"file open\*(R").
1051.PP
1052If you must do this, then force the use of a known-to-be-good backend 1137If you must do this, then force the use of a known-to-be-good backend
1053(at the time of this writing, this includes only \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR and 1138(at the time of this writing, this includes only \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR and
1054\&\f(CW\*(C`EVBACKEND_POLL\*(C'\fR). 1139\&\f(CW\*(C`EVBACKEND_POLL\*(C'\fR).
1055.PP 1140.PP
1056Another thing you have to watch out for is that it is quite easy to 1141Another thing you have to watch out for is that it is quite easy to
1069its own, so its quite safe to use). 1154its own, so its quite safe to use).
1070.PP 1155.PP
1071\fIThe special problem of disappearing file descriptors\fR 1156\fIThe special problem of disappearing file descriptors\fR
1072.IX Subsection "The special problem of disappearing file descriptors" 1157.IX Subsection "The special problem of disappearing file descriptors"
1073.PP 1158.PP
1074Some backends (e.g kqueue, epoll) need to be told about closing a file 1159Some backends (e.g. kqueue, epoll) need to be told about closing a file
1075descriptor (either by calling \f(CW\*(C`close\*(C'\fR explicitly or by any other means, 1160descriptor (either by calling \f(CW\*(C`close\*(C'\fR explicitly or by any other means,
1076such as \f(CW\*(C`dup\*(C'\fR). The reason is that you register interest in some file 1161such as \f(CW\*(C`dup\*(C'\fR). The reason is that you register interest in some file
1077descriptor, but when it goes away, the operating system will silently drop 1162descriptor, but when it goes away, the operating system will silently drop
1078this interest. If another file descriptor with the same number then is 1163this interest. If another file descriptor with the same number then is
1079registered with libev, there is no efficient way to see that this is, in 1164registered with libev, there is no efficient way to see that this is, in
1087descriptor even if the file descriptor number itself did not change. 1172descriptor even if the file descriptor number itself did not change.
1088.PP 1173.PP
1089This is how one would do it normally anyway, the important point is that 1174This is how one would do it normally anyway, the important point is that
1090the libev application should not optimise around libev but should leave 1175the libev application should not optimise around libev but should leave
1091optimisations to libev. 1176optimisations to libev.
1177.PP
1178\fIThe special problem of dup'ed file descriptors\fR
1179.IX Subsection "The special problem of dup'ed file descriptors"
1180.PP
1181Some backends (e.g. epoll), cannot register events for file descriptors,
1182but only events for the underlying file descriptions. That means when you
1183have \f(CW\*(C`dup ()\*(C'\fR'ed file descriptors or weirder constellations, and register
1184events for them, only one file descriptor might actually receive events.
1185.PP
1186There is no workaround possible except not registering events
1187for potentially \f(CW\*(C`dup ()\*(C'\fR'ed file descriptors, or to resort to
1188\&\f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or \f(CW\*(C`EVBACKEND_POLL\*(C'\fR.
1189.PP
1190\fIThe special problem of fork\fR
1191.IX Subsection "The special problem of fork"
1192.PP
1193Some backends (epoll, kqueue) do not support \f(CW\*(C`fork ()\*(C'\fR at all or exhibit
1194useless behaviour. Libev fully supports fork, but needs to be told about
1195it in the child.
1196.PP
1197To support fork in your programs, you either have to call
1198\&\f(CW\*(C`ev_default_fork ()\*(C'\fR or \f(CW\*(C`ev_loop_fork ()\*(C'\fR after a fork in the child,
1199enable \f(CW\*(C`EVFLAG_FORKCHECK\*(C'\fR, or resort to \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR or
1200\&\f(CW\*(C`EVBACKEND_POLL\*(C'\fR.
1092.PP 1201.PP
1093\fIWatcher-Specific Functions\fR 1202\fIWatcher-Specific Functions\fR
1094.IX Subsection "Watcher-Specific Functions" 1203.IX Subsection "Watcher-Specific Functions"
1095.IP "ev_io_init (ev_io *, callback, int fd, int events)" 4 1204.IP "ev_io_init (ev_io *, callback, int fd, int events)" 4
1096.IX Item "ev_io_init (ev_io *, callback, int fd, int events)" 1205.IX Item "ev_io_init (ev_io *, callback, int fd, int events)"
1106The file descriptor being watched. 1215The file descriptor being watched.
1107.IP "int events [read\-only]" 4 1216.IP "int events [read\-only]" 4
1108.IX Item "int events [read-only]" 1217.IX Item "int events [read-only]"
1109The events being watched. 1218The events being watched.
1110.PP 1219.PP
1220\fIExamples\fR
1221.IX Subsection "Examples"
1222.PP
1111Example: Call \f(CW\*(C`stdin_readable_cb\*(C'\fR when \s-1STDIN_FILENO\s0 has become, well 1223Example: Call \f(CW\*(C`stdin_readable_cb\*(C'\fR when \s-1STDIN_FILENO\s0 has become, well
1112readable, but only once. Since it is likely line\-buffered, you could 1224readable, but only once. Since it is likely line-buffered, you could
1113attempt to read a whole line in the callback. 1225attempt to read a whole line in the callback.
1114.PP 1226.PP
1115.Vb 6 1227.Vb 6
1116\& static void 1228\& static void
1117\& stdin_readable_cb (struct ev_loop *loop, struct ev_io *w, int revents) 1229\& stdin_readable_cb (struct ev_loop *loop, struct ev_io *w, int revents)
1118\& { 1230\& {
1119\& ev_io_stop (loop, w); 1231\& ev_io_stop (loop, w);
1120\& .. read from stdin here (or from w->fd) and haqndle any I/O errors 1232\& .. read from stdin here (or from w\->fd) and haqndle any I/O errors
1121\& } 1233\& }
1122.Ve 1234\&
1123.PP
1124.Vb 6
1125\& ... 1235\& ...
1126\& struct ev_loop *loop = ev_default_init (0); 1236\& struct ev_loop *loop = ev_default_init (0);
1127\& struct ev_io stdin_readable; 1237\& struct ev_io stdin_readable;
1128\& ev_io_init (&stdin_readable, stdin_readable_cb, STDIN_FILENO, EV_READ); 1238\& ev_io_init (&stdin_readable, stdin_readable_cb, STDIN_FILENO, EV_READ);
1129\& ev_io_start (loop, &stdin_readable); 1239\& ev_io_start (loop, &stdin_readable);
1146of the event triggering whatever timeout you are modifying/starting. If 1256of the event triggering whatever timeout you are modifying/starting. If
1147you suspect event processing to be delayed and you \fIneed\fR to base the timeout 1257you suspect event processing to be delayed and you \fIneed\fR to base the timeout
1148on the current time, use something like this to adjust for this: 1258on the current time, use something like this to adjust for this:
1149.PP 1259.PP
1150.Vb 1 1260.Vb 1
1151\& ev_timer_set (&timer, after + ev_now () - ev_time (), 0.); 1261\& ev_timer_set (&timer, after + ev_now () \- ev_time (), 0.);
1152.Ve 1262.Ve
1153.PP 1263.PP
1154The callback is guarenteed to be invoked only when its timeout has passed, 1264The callback is guarenteed to be invoked only when its timeout has passed,
1155but if multiple timers become ready during the same loop iteration then 1265but if multiple timers become ready during the same loop iteration then
1156order of execution is undefined. 1266order of execution is undefined.
1200.Sp 1310.Sp
1201.Vb 8 1311.Vb 8
1202\& ev_timer_init (timer, callback, 0., 5.); 1312\& ev_timer_init (timer, callback, 0., 5.);
1203\& ev_timer_again (loop, timer); 1313\& ev_timer_again (loop, timer);
1204\& ... 1314\& ...
1205\& timer->again = 17.; 1315\& timer\->again = 17.;
1206\& ev_timer_again (loop, timer); 1316\& ev_timer_again (loop, timer);
1207\& ... 1317\& ...
1208\& timer->again = 10.; 1318\& timer\->again = 10.;
1209\& ev_timer_again (loop, timer); 1319\& ev_timer_again (loop, timer);
1210.Ve 1320.Ve
1211.Sp 1321.Sp
1212This is more slightly efficient then stopping/starting the timer each time 1322This is more slightly efficient then stopping/starting the timer each time
1213you want to modify its timeout value. 1323you want to modify its timeout value.
1215.IX Item "ev_tstamp repeat [read-write]" 1325.IX Item "ev_tstamp repeat [read-write]"
1216The current \f(CW\*(C`repeat\*(C'\fR value. Will be used each time the watcher times out 1326The current \f(CW\*(C`repeat\*(C'\fR value. Will be used each time the watcher times out
1217or \f(CW\*(C`ev_timer_again\*(C'\fR is called and determines the next timeout (if any), 1327or \f(CW\*(C`ev_timer_again\*(C'\fR is called and determines the next timeout (if any),
1218which is also when any modifications are taken into account. 1328which is also when any modifications are taken into account.
1219.PP 1329.PP
1330\fIExamples\fR
1331.IX Subsection "Examples"
1332.PP
1220Example: Create a timer that fires after 60 seconds. 1333Example: Create a timer that fires after 60 seconds.
1221.PP 1334.PP
1222.Vb 5 1335.Vb 5
1223\& static void 1336\& static void
1224\& one_minute_cb (struct ev_loop *loop, struct ev_timer *w, int revents) 1337\& one_minute_cb (struct ev_loop *loop, struct ev_timer *w, int revents)
1225\& { 1338\& {
1226\& .. one minute over, w is actually stopped right here 1339\& .. one minute over, w is actually stopped right here
1227\& } 1340\& }
1228.Ve 1341\&
1229.PP
1230.Vb 3
1231\& struct ev_timer mytimer; 1342\& struct ev_timer mytimer;
1232\& ev_timer_init (&mytimer, one_minute_cb, 60., 0.); 1343\& ev_timer_init (&mytimer, one_minute_cb, 60., 0.);
1233\& ev_timer_start (loop, &mytimer); 1344\& ev_timer_start (loop, &mytimer);
1234.Ve 1345.Ve
1235.PP 1346.PP
1240\& static void 1351\& static void
1241\& timeout_cb (struct ev_loop *loop, struct ev_timer *w, int revents) 1352\& timeout_cb (struct ev_loop *loop, struct ev_timer *w, int revents)
1242\& { 1353\& {
1243\& .. ten seconds without any activity 1354\& .. ten seconds without any activity
1244\& } 1355\& }
1245.Ve 1356\&
1246.PP
1247.Vb 4
1248\& struct ev_timer mytimer; 1357\& struct ev_timer mytimer;
1249\& ev_timer_init (&mytimer, timeout_cb, 0., 10.); /* note, only repeat used */ 1358\& ev_timer_init (&mytimer, timeout_cb, 0., 10.); /* note, only repeat used */
1250\& ev_timer_again (&mytimer); /* start timer */ 1359\& ev_timer_again (&mytimer); /* start timer */
1251\& ev_loop (loop, 0); 1360\& ev_loop (loop, 0);
1252.Ve 1361\&
1253.PP
1254.Vb 3
1255\& // and in some piece of code that gets executed on any "activity": 1362\& // and in some piece of code that gets executed on any "activity":
1256\& // reset the timeout to start ticking again at 10 seconds 1363\& // reset the timeout to start ticking again at 10 seconds
1257\& ev_timer_again (&mytimer); 1364\& ev_timer_again (&mytimer);
1258.Ve 1365.Ve
1259.ie n .Sh """ev_periodic"" \- to cron or not to cron?" 1366.ie n .Sh """ev_periodic"" \- to cron or not to cron?"
1287.IX Item "ev_periodic_set (ev_periodic *, ev_tstamp after, ev_tstamp repeat, reschedule_cb)" 1394.IX Item "ev_periodic_set (ev_periodic *, ev_tstamp after, ev_tstamp repeat, reschedule_cb)"
1288.PD 1395.PD
1289Lots of arguments, lets sort it out... There are basically three modes of 1396Lots of arguments, lets sort it out... There are basically three modes of
1290operation, and we will explain them from simplest to complex: 1397operation, and we will explain them from simplest to complex:
1291.RS 4 1398.RS 4
1399.IP "\(bu" 4
1292.IP "* absolute timer (at = time, interval = reschedule_cb = 0)" 4 1400absolute timer (at = time, interval = reschedule_cb = 0)
1293.IX Item "absolute timer (at = time, interval = reschedule_cb = 0)" 1401.Sp
1294In this configuration the watcher triggers an event at the wallclock time 1402In this configuration the watcher triggers an event at the wallclock time
1295\&\f(CW\*(C`at\*(C'\fR and doesn't repeat. It will not adjust when a time jump occurs, 1403\&\f(CW\*(C`at\*(C'\fR and doesn't repeat. It will not adjust when a time jump occurs,
1296that is, if it is to be run at January 1st 2011 then it will run when the 1404that is, if it is to be run at January 1st 2011 then it will run when the
1297system time reaches or surpasses this time. 1405system time reaches or surpasses this time.
1406.IP "\(bu" 4
1298.IP "* non-repeating interval timer (at = offset, interval > 0, reschedule_cb = 0)" 4 1407non-repeating interval timer (at = offset, interval > 0, reschedule_cb = 0)
1299.IX Item "non-repeating interval timer (at = offset, interval > 0, reschedule_cb = 0)" 1408.Sp
1300In this mode the watcher will always be scheduled to time out at the next 1409In this mode the watcher will always be scheduled to time out at the next
1301\&\f(CW\*(C`at + N * interval\*(C'\fR time (for some integer N, which can also be negative) 1410\&\f(CW\*(C`at + N * interval\*(C'\fR time (for some integer N, which can also be negative)
1302and then repeat, regardless of any time jumps. 1411and then repeat, regardless of any time jumps.
1303.Sp 1412.Sp
1304This can be used to create timers that do not drift with respect to system 1413This can be used to create timers that do not drift with respect to system
1318time where \f(CW\*(C`time = at (mod interval)\*(C'\fR, regardless of any time jumps. 1427time where \f(CW\*(C`time = at (mod interval)\*(C'\fR, regardless of any time jumps.
1319.Sp 1428.Sp
1320For numerical stability it is preferable that the \f(CW\*(C`at\*(C'\fR value is near 1429For numerical stability it is preferable that the \f(CW\*(C`at\*(C'\fR value is near
1321\&\f(CW\*(C`ev_now ()\*(C'\fR (the current time), but there is no range requirement for 1430\&\f(CW\*(C`ev_now ()\*(C'\fR (the current time), but there is no range requirement for
1322this value. 1431this value.
1432.IP "\(bu" 4
1323.IP "* manual reschedule mode (at and interval ignored, reschedule_cb = callback)" 4 1433manual reschedule mode (at and interval ignored, reschedule_cb = callback)
1324.IX Item "manual reschedule mode (at and interval ignored, reschedule_cb = callback)" 1434.Sp
1325In this mode the values for \f(CW\*(C`interval\*(C'\fR and \f(CW\*(C`at\*(C'\fR are both being 1435In this mode the values for \f(CW\*(C`interval\*(C'\fR and \f(CW\*(C`at\*(C'\fR are both being
1326ignored. Instead, each time the periodic watcher gets scheduled, the 1436ignored. Instead, each time the periodic watcher gets scheduled, the
1327reschedule callback will be called with the watcher as first, and the 1437reschedule callback will be called with the watcher as first, and the
1328current time as second argument. 1438current time as second argument.
1329.Sp 1439.Sp
1379.IP "ev_tstamp (*reschedule_cb)(struct ev_periodic *w, ev_tstamp now) [read\-write]" 4 1489.IP "ev_tstamp (*reschedule_cb)(struct ev_periodic *w, ev_tstamp now) [read\-write]" 4
1380.IX Item "ev_tstamp (*reschedule_cb)(struct ev_periodic *w, ev_tstamp now) [read-write]" 1490.IX Item "ev_tstamp (*reschedule_cb)(struct ev_periodic *w, ev_tstamp now) [read-write]"
1381The current reschedule callback, or \f(CW0\fR, if this functionality is 1491The current reschedule callback, or \f(CW0\fR, if this functionality is
1382switched off. Can be changed any time, but changes only take effect when 1492switched off. Can be changed any time, but changes only take effect when
1383the periodic timer fires or \f(CW\*(C`ev_periodic_again\*(C'\fR is being called. 1493the periodic timer fires or \f(CW\*(C`ev_periodic_again\*(C'\fR is being called.
1494.IP "ev_tstamp at [read\-only]" 4
1495.IX Item "ev_tstamp at [read-only]"
1496When active, contains the absolute time that the watcher is supposed to
1497trigger next.
1498.PP
1499\fIExamples\fR
1500.IX Subsection "Examples"
1384.PP 1501.PP
1385Example: Call a callback every hour, or, more precisely, whenever the 1502Example: Call a callback every hour, or, more precisely, whenever the
1386system clock is divisible by 3600. The callback invocation times have 1503system clock is divisible by 3600. The callback invocation times have
1387potentially a lot of jittering, but good long-term stability. 1504potentially a lot of jittering, but good long-term stability.
1388.PP 1505.PP
1390\& static void 1507\& static void
1391\& clock_cb (struct ev_loop *loop, struct ev_io *w, int revents) 1508\& clock_cb (struct ev_loop *loop, struct ev_io *w, int revents)
1392\& { 1509\& {
1393\& ... its now a full hour (UTC, or TAI or whatever your clock follows) 1510\& ... its now a full hour (UTC, or TAI or whatever your clock follows)
1394\& } 1511\& }
1395.Ve 1512\&
1396.PP
1397.Vb 3
1398\& struct ev_periodic hourly_tick; 1513\& struct ev_periodic hourly_tick;
1399\& ev_periodic_init (&hourly_tick, clock_cb, 0., 3600., 0); 1514\& ev_periodic_init (&hourly_tick, clock_cb, 0., 3600., 0);
1400\& ev_periodic_start (loop, &hourly_tick); 1515\& ev_periodic_start (loop, &hourly_tick);
1401.Ve 1516.Ve
1402.PP 1517.PP
1403Example: The same as above, but use a reschedule callback to do it: 1518Example: The same as above, but use a reschedule callback to do it:
1404.PP 1519.PP
1405.Vb 1 1520.Vb 1
1406\& #include <math.h> 1521\& #include <math.h>
1407.Ve 1522\&
1408.PP
1409.Vb 5
1410\& static ev_tstamp 1523\& static ev_tstamp
1411\& my_scheduler_cb (struct ev_periodic *w, ev_tstamp now) 1524\& my_scheduler_cb (struct ev_periodic *w, ev_tstamp now)
1412\& { 1525\& {
1413\& return fmod (now, 3600.) + 3600.; 1526\& return fmod (now, 3600.) + 3600.;
1414\& } 1527\& }
1415.Ve 1528\&
1416.PP
1417.Vb 1
1418\& ev_periodic_init (&hourly_tick, clock_cb, 0., 0., my_scheduler_cb); 1529\& ev_periodic_init (&hourly_tick, clock_cb, 0., 0., my_scheduler_cb);
1419.Ve 1530.Ve
1420.PP 1531.PP
1421Example: Call a callback every hour, starting now: 1532Example: Call a callback every hour, starting now:
1422.PP 1533.PP
1460Child watchers trigger when your process receives a \s-1SIGCHLD\s0 in response to 1571Child watchers trigger when your process receives a \s-1SIGCHLD\s0 in response to
1461some child status changes (most typically when a child of yours dies). 1572some child status changes (most typically when a child of yours dies).
1462.PP 1573.PP
1463\fIWatcher-Specific Functions and Data Members\fR 1574\fIWatcher-Specific Functions and Data Members\fR
1464.IX Subsection "Watcher-Specific Functions and Data Members" 1575.IX Subsection "Watcher-Specific Functions and Data Members"
1465.IP "ev_child_init (ev_child *, callback, int pid)" 4 1576.IP "ev_child_init (ev_child *, callback, int pid, int trace)" 4
1466.IX Item "ev_child_init (ev_child *, callback, int pid)" 1577.IX Item "ev_child_init (ev_child *, callback, int pid, int trace)"
1467.PD 0 1578.PD 0
1468.IP "ev_child_set (ev_child *, int pid)" 4 1579.IP "ev_child_set (ev_child *, int pid, int trace)" 4
1469.IX Item "ev_child_set (ev_child *, int pid)" 1580.IX Item "ev_child_set (ev_child *, int pid, int trace)"
1470.PD 1581.PD
1471Configures the watcher to wait for status changes of process \f(CW\*(C`pid\*(C'\fR (or 1582Configures the watcher to wait for status changes of process \f(CW\*(C`pid\*(C'\fR (or
1472\&\fIany\fR process if \f(CW\*(C`pid\*(C'\fR is specified as \f(CW0\fR). The callback can look 1583\&\fIany\fR process if \f(CW\*(C`pid\*(C'\fR is specified as \f(CW0\fR). The callback can look
1473at the \f(CW\*(C`rstatus\*(C'\fR member of the \f(CW\*(C`ev_child\*(C'\fR watcher structure to see 1584at the \f(CW\*(C`rstatus\*(C'\fR member of the \f(CW\*(C`ev_child\*(C'\fR watcher structure to see
1474the status word (use the macros from \f(CW\*(C`sys/wait.h\*(C'\fR and see your systems 1585the status word (use the macros from \f(CW\*(C`sys/wait.h\*(C'\fR and see your systems
1475\&\f(CW\*(C`waitpid\*(C'\fR documentation). The \f(CW\*(C`rpid\*(C'\fR member contains the pid of the 1586\&\f(CW\*(C`waitpid\*(C'\fR documentation). The \f(CW\*(C`rpid\*(C'\fR member contains the pid of the
1476process causing the status change. 1587process causing the status change. \f(CW\*(C`trace\*(C'\fR must be either \f(CW0\fR (only
1588activate the watcher when the process terminates) or \f(CW1\fR (additionally
1589activate the watcher when the process is stopped or continued).
1477.IP "int pid [read\-only]" 4 1590.IP "int pid [read\-only]" 4
1478.IX Item "int pid [read-only]" 1591.IX Item "int pid [read-only]"
1479The process id this watcher watches out for, or \f(CW0\fR, meaning any process id. 1592The process id this watcher watches out for, or \f(CW0\fR, meaning any process id.
1480.IP "int rpid [read\-write]" 4 1593.IP "int rpid [read\-write]" 4
1481.IX Item "int rpid [read-write]" 1594.IX Item "int rpid [read-write]"
1483.IP "int rstatus [read\-write]" 4 1596.IP "int rstatus [read\-write]" 4
1484.IX Item "int rstatus [read-write]" 1597.IX Item "int rstatus [read-write]"
1485The process exit/trace status caused by \f(CW\*(C`rpid\*(C'\fR (see your systems 1598The process exit/trace status caused by \f(CW\*(C`rpid\*(C'\fR (see your systems
1486\&\f(CW\*(C`waitpid\*(C'\fR and \f(CW\*(C`sys/wait.h\*(C'\fR documentation for details). 1599\&\f(CW\*(C`waitpid\*(C'\fR and \f(CW\*(C`sys/wait.h\*(C'\fR documentation for details).
1487.PP 1600.PP
1601\fIExamples\fR
1602.IX Subsection "Examples"
1603.PP
1488Example: Try to exit cleanly on \s-1SIGINT\s0 and \s-1SIGTERM\s0. 1604Example: Try to exit cleanly on \s-1SIGINT\s0 and \s-1SIGTERM\s0.
1489.PP 1605.PP
1490.Vb 5 1606.Vb 5
1491\& static void 1607\& static void
1492\& sigint_cb (struct ev_loop *loop, struct ev_signal *w, int revents) 1608\& sigint_cb (struct ev_loop *loop, struct ev_signal *w, int revents)
1493\& { 1609\& {
1494\& ev_unloop (loop, EVUNLOOP_ALL); 1610\& ev_unloop (loop, EVUNLOOP_ALL);
1495\& } 1611\& }
1496.Ve 1612\&
1497.PP
1498.Vb 3
1499\& struct ev_signal signal_watcher; 1613\& struct ev_signal signal_watcher;
1500\& ev_signal_init (&signal_watcher, sigint_cb, SIGINT); 1614\& ev_signal_init (&signal_watcher, sigint_cb, SIGINT);
1501\& ev_signal_start (loop, &sigint_cb); 1615\& ev_signal_start (loop, &sigint_cb);
1502.Ve 1616.Ve
1503.ie n .Sh """ev_stat"" \- did the file attributes just change?" 1617.ie n .Sh """ev_stat"" \- did the file attributes just change?"
1525impose a minimum interval which is currently around \f(CW0.1\fR, but thats 1639impose a minimum interval which is currently around \f(CW0.1\fR, but thats
1526usually overkill. 1640usually overkill.
1527.PP 1641.PP
1528This watcher type is not meant for massive numbers of stat watchers, 1642This watcher type is not meant for massive numbers of stat watchers,
1529as even with OS-supported change notifications, this can be 1643as even with OS-supported change notifications, this can be
1530resource\-intensive. 1644resource-intensive.
1531.PP 1645.PP
1532At the time of this writing, only the Linux inotify interface is 1646At the time of this writing, only the Linux inotify interface is
1533implemented (implementing kqueue support is left as an exercise for the 1647implemented (implementing kqueue support is left as an exercise for the
1534reader). Inotify will be used to give hints only and should not change the 1648reader). Inotify will be used to give hints only and should not change the
1535semantics of \f(CW\*(C`ev_stat\*(C'\fR watchers, which means that libev sometimes needs 1649semantics of \f(CW\*(C`ev_stat\*(C'\fR watchers, which means that libev sometimes needs
1536to fall back to regular polling again even with inotify, but changes are 1650to fall back to regular polling again even with inotify, but changes are
1537usually detected immediately, and if the file exists there will be no 1651usually detected immediately, and if the file exists there will be no
1538polling. 1652polling.
1653.PP
1654\fIInotify\fR
1655.IX Subsection "Inotify"
1656.PP
1657When \f(CW\*(C`inotify (7)\*(C'\fR support has been compiled into libev (generally only
1658available on Linux) and present at runtime, it will be used to speed up
1659change detection where possible. The inotify descriptor will be created lazily
1660when the first \f(CW\*(C`ev_stat\*(C'\fR watcher is being started.
1661.PP
1662Inotify presense does not change the semantics of \f(CW\*(C`ev_stat\*(C'\fR watchers
1663except that changes might be detected earlier, and in some cases, to avoid
1664making regular \f(CW\*(C`stat\*(C'\fR calls. Even in the presense of inotify support
1665there are many cases where libev has to resort to regular \f(CW\*(C`stat\*(C'\fR polling.
1666.PP
1667(There is no support for kqueue, as apparently it cannot be used to
1668implement this functionality, due to the requirement of having a file
1669descriptor open on the object at all times).
1670.PP
1671\fIThe special problem of stat time resolution\fR
1672.IX Subsection "The special problem of stat time resolution"
1673.PP
1674The \f(CW\*(C`stat ()\*(C'\fR syscall only supports full-second resolution portably, and
1675even on systems where the resolution is higher, many filesystems still
1676only support whole seconds.
1677.PP
1678That means that, if the time is the only thing that changes, you might
1679miss updates: on the first update, \f(CW\*(C`ev_stat\*(C'\fR detects a change and calls
1680your callback, which does something. When there is another update within
1681the same second, \f(CW\*(C`ev_stat\*(C'\fR will be unable to detect it.
1682.PP
1683The solution to this is to delay acting on a change for a second (or till
1684the next second boundary), using a roughly one-second delay \f(CW\*(C`ev_timer\*(C'\fR
1685(\f(CW\*(C`ev_timer_set (w, 0., 1.01); ev_timer_again (loop, w)\*(C'\fR). The \f(CW.01\fR
1686is added to work around small timing inconsistencies of some operating
1687systems.
1539.PP 1688.PP
1540\fIWatcher-Specific Functions and Data Members\fR 1689\fIWatcher-Specific Functions and Data Members\fR
1541.IX Subsection "Watcher-Specific Functions and Data Members" 1690.IX Subsection "Watcher-Specific Functions and Data Members"
1542.IP "ev_stat_init (ev_stat *, callback, const char *path, ev_tstamp interval)" 4 1691.IP "ev_stat_init (ev_stat *, callback, const char *path, ev_tstamp interval)" 4
1543.IX Item "ev_stat_init (ev_stat *, callback, const char *path, ev_tstamp interval)" 1692.IX Item "ev_stat_init (ev_stat *, callback, const char *path, ev_tstamp interval)"
1575The specified interval. 1724The specified interval.
1576.IP "const char *path [read\-only]" 4 1725.IP "const char *path [read\-only]" 4
1577.IX Item "const char *path [read-only]" 1726.IX Item "const char *path [read-only]"
1578The filesystem path that is being watched. 1727The filesystem path that is being watched.
1579.PP 1728.PP
1729\fIExamples\fR
1730.IX Subsection "Examples"
1731.PP
1580Example: Watch \f(CW\*(C`/etc/passwd\*(C'\fR for attribute changes. 1732Example: Watch \f(CW\*(C`/etc/passwd\*(C'\fR for attribute changes.
1581.PP 1733.PP
1582.Vb 15 1734.Vb 10
1583\& static void 1735\& static void
1584\& passwd_cb (struct ev_loop *loop, ev_stat *w, int revents) 1736\& passwd_cb (struct ev_loop *loop, ev_stat *w, int revents)
1585\& { 1737\& {
1586\& /* /etc/passwd changed in some way */ 1738\& /* /etc/passwd changed in some way */
1587\& if (w->attr.st_nlink) 1739\& if (w\->attr.st_nlink)
1588\& { 1740\& {
1589\& printf ("passwd current size %ld\en", (long)w->attr.st_size); 1741\& printf ("passwd current size %ld\en", (long)w\->attr.st_size);
1590\& printf ("passwd current atime %ld\en", (long)w->attr.st_mtime); 1742\& printf ("passwd current atime %ld\en", (long)w\->attr.st_mtime);
1591\& printf ("passwd current mtime %ld\en", (long)w->attr.st_mtime); 1743\& printf ("passwd current mtime %ld\en", (long)w\->attr.st_mtime);
1592\& } 1744\& }
1593\& else 1745\& else
1594\& /* you shalt not abuse printf for puts */ 1746\& /* you shalt not abuse printf for puts */
1595\& puts ("wow, /etc/passwd is not there, expect problems. " 1747\& puts ("wow, /etc/passwd is not there, expect problems. "
1596\& "if this is windows, they already arrived\en"); 1748\& "if this is windows, they already arrived\en");
1597\& } 1749\& }
1598.Ve 1750\&
1599.PP
1600.Vb 2
1601\& ... 1751\& ...
1602\& ev_stat passwd; 1752\& ev_stat passwd;
1753\&
1754\& ev_stat_init (&passwd, passwd_cb, "/etc/passwd", 0.);
1755\& ev_stat_start (loop, &passwd);
1603.Ve 1756.Ve
1757.PP
1758Example: Like above, but additionally use a one-second delay so we do not
1759miss updates (however, frequent updates will delay processing, too, so
1760one might do the work both on \f(CW\*(C`ev_stat\*(C'\fR callback invocation \fIand\fR on
1761\&\f(CW\*(C`ev_timer\*(C'\fR callback invocation).
1604.PP 1762.PP
1605.Vb 2 1763.Vb 2
1764\& static ev_stat passwd;
1765\& static ev_timer timer;
1766\&
1767\& static void
1768\& timer_cb (EV_P_ ev_timer *w, int revents)
1769\& {
1770\& ev_timer_stop (EV_A_ w);
1771\&
1772\& /* now it\*(Aqs one second after the most recent passwd change */
1773\& }
1774\&
1775\& static void
1776\& stat_cb (EV_P_ ev_stat *w, int revents)
1777\& {
1778\& /* reset the one\-second timer */
1779\& ev_timer_again (EV_A_ &timer);
1780\& }
1781\&
1782\& ...
1606\& ev_stat_init (&passwd, passwd_cb, "/etc/passwd"); 1783\& ev_stat_init (&passwd, stat_cb, "/etc/passwd", 0.);
1607\& ev_stat_start (loop, &passwd); 1784\& ev_stat_start (loop, &passwd);
1785\& ev_timer_init (&timer, timer_cb, 0., 1.01);
1608.Ve 1786.Ve
1609.ie n .Sh """ev_idle"" \- when you've got nothing better to do..." 1787.ie n .Sh """ev_idle"" \- when you've got nothing better to do..."
1610.el .Sh "\f(CWev_idle\fP \- when you've got nothing better to do..." 1788.el .Sh "\f(CWev_idle\fP \- when you've got nothing better to do..."
1611.IX Subsection "ev_idle - when you've got nothing better to do..." 1789.IX Subsection "ev_idle - when you've got nothing better to do..."
1612Idle watchers trigger events when no other events of the same or higher 1790Idle watchers trigger events when no other events of the same or higher
1623The most noteworthy effect is that as long as any idle watchers are 1801The most noteworthy effect is that as long as any idle watchers are
1624active, the process will not block when waiting for new events. 1802active, the process will not block when waiting for new events.
1625.PP 1803.PP
1626Apart from keeping your process non-blocking (which is a useful 1804Apart from keeping your process non-blocking (which is a useful
1627effect on its own sometimes), idle watchers are a good place to do 1805effect on its own sometimes), idle watchers are a good place to do
1628\&\*(L"pseudo\-background processing\*(R", or delay processing stuff to after the 1806\&\*(L"pseudo-background processing\*(R", or delay processing stuff to after the
1629event loop has handled all outstanding events. 1807event loop has handled all outstanding events.
1630.PP 1808.PP
1631\fIWatcher-Specific Functions and Data Members\fR 1809\fIWatcher-Specific Functions and Data Members\fR
1632.IX Subsection "Watcher-Specific Functions and Data Members" 1810.IX Subsection "Watcher-Specific Functions and Data Members"
1633.IP "ev_idle_init (ev_signal *, callback)" 4 1811.IP "ev_idle_init (ev_signal *, callback)" 4
1634.IX Item "ev_idle_init (ev_signal *, callback)" 1812.IX Item "ev_idle_init (ev_signal *, callback)"
1635Initialises and configures the idle watcher \- it has no parameters of any 1813Initialises and configures the idle watcher \- it has no parameters of any
1636kind. There is a \f(CW\*(C`ev_idle_set\*(C'\fR macro, but using it is utterly pointless, 1814kind. There is a \f(CW\*(C`ev_idle_set\*(C'\fR macro, but using it is utterly pointless,
1637believe me. 1815believe me.
1638.PP 1816.PP
1817\fIExamples\fR
1818.IX Subsection "Examples"
1819.PP
1639Example: Dynamically allocate an \f(CW\*(C`ev_idle\*(C'\fR watcher, start it, and in the 1820Example: Dynamically allocate an \f(CW\*(C`ev_idle\*(C'\fR watcher, start it, and in the
1640callback, free it. Also, use no error checking, as usual. 1821callback, free it. Also, use no error checking, as usual.
1641.PP 1822.PP
1642.Vb 7 1823.Vb 7
1643\& static void 1824\& static void
1644\& idle_cb (struct ev_loop *loop, struct ev_idle *w, int revents) 1825\& idle_cb (struct ev_loop *loop, struct ev_idle *w, int revents)
1645\& { 1826\& {
1646\& free (w); 1827\& free (w);
1647\& // now do something you wanted to do when the program has 1828\& // now do something you wanted to do when the program has
1648\& // no longer asnything immediate to do. 1829\& // no longer anything immediate to do.
1649\& } 1830\& }
1650.Ve 1831\&
1651.PP
1652.Vb 3
1653\& struct ev_idle *idle_watcher = malloc (sizeof (struct ev_idle)); 1832\& struct ev_idle *idle_watcher = malloc (sizeof (struct ev_idle));
1654\& ev_idle_init (idle_watcher, idle_cb); 1833\& ev_idle_init (idle_watcher, idle_cb);
1655\& ev_idle_start (loop, idle_cb); 1834\& ev_idle_start (loop, idle_cb);
1656.Ve 1835.Ve
1657.ie n .Sh """ev_prepare""\fP and \f(CW""ev_check"" \- customise your event loop!" 1836.ie n .Sh """ev_prepare""\fP and \f(CW""ev_check"" \- customise your event loop!"
1697.PP 1876.PP
1698It is recommended to give \f(CW\*(C`ev_check\*(C'\fR watchers highest (\f(CW\*(C`EV_MAXPRI\*(C'\fR) 1877It is recommended to give \f(CW\*(C`ev_check\*(C'\fR watchers highest (\f(CW\*(C`EV_MAXPRI\*(C'\fR)
1699priority, to ensure that they are being run before any other watchers 1878priority, to ensure that they are being run before any other watchers
1700after the poll. Also, \f(CW\*(C`ev_check\*(C'\fR watchers (and \f(CW\*(C`ev_prepare\*(C'\fR watchers, 1879after the poll. Also, \f(CW\*(C`ev_check\*(C'\fR watchers (and \f(CW\*(C`ev_prepare\*(C'\fR watchers,
1701too) should not activate (\*(L"feed\*(R") events into libev. While libev fully 1880too) should not activate (\*(L"feed\*(R") events into libev. While libev fully
1702supports this, they will be called before other \f(CW\*(C`ev_check\*(C'\fR watchers did 1881supports this, they will be called before other \f(CW\*(C`ev_check\*(C'\fR watchers
1703their job. As \f(CW\*(C`ev_check\*(C'\fR watchers are often used to embed other event 1882did their job. As \f(CW\*(C`ev_check\*(C'\fR watchers are often used to embed other
1704loops those other event loops might be in an unusable state until their 1883(non-libev) event loops those other event loops might be in an unusable
1705\&\f(CW\*(C`ev_check\*(C'\fR watcher ran (always remind yourself to coexist peacefully with 1884state until their \f(CW\*(C`ev_check\*(C'\fR watcher ran (always remind yourself to
1706others). 1885coexist peacefully with others).
1707.PP 1886.PP
1708\fIWatcher-Specific Functions and Data Members\fR 1887\fIWatcher-Specific Functions and Data Members\fR
1709.IX Subsection "Watcher-Specific Functions and Data Members" 1888.IX Subsection "Watcher-Specific Functions and Data Members"
1710.IP "ev_prepare_init (ev_prepare *, callback)" 4 1889.IP "ev_prepare_init (ev_prepare *, callback)" 4
1711.IX Item "ev_prepare_init (ev_prepare *, callback)" 1890.IX Item "ev_prepare_init (ev_prepare *, callback)"
1715.PD 1894.PD
1716Initialises and configures the prepare or check watcher \- they have no 1895Initialises and configures the prepare or check watcher \- they have no
1717parameters of any kind. There are \f(CW\*(C`ev_prepare_set\*(C'\fR and \f(CW\*(C`ev_check_set\*(C'\fR 1896parameters of any kind. There are \f(CW\*(C`ev_prepare_set\*(C'\fR and \f(CW\*(C`ev_check_set\*(C'\fR
1718macros, but using them is utterly, utterly and completely pointless. 1897macros, but using them is utterly, utterly and completely pointless.
1719.PP 1898.PP
1899\fIExamples\fR
1900.IX Subsection "Examples"
1901.PP
1720There are a number of principal ways to embed other event loops or modules 1902There are a number of principal ways to embed other event loops or modules
1721into libev. Here are some ideas on how to include libadns into libev 1903into libev. Here are some ideas on how to include libadns into libev
1722(there is a Perl module named \f(CW\*(C`EV::ADNS\*(C'\fR that does this, which you could 1904(there is a Perl module named \f(CW\*(C`EV::ADNS\*(C'\fR that does this, which you could
1723use for an actually working example. Another Perl module named \f(CW\*(C`EV::Glib\*(C'\fR 1905use for an actually working example. Another Perl module named \f(CW\*(C`EV::Glib\*(C'\fR
1724embeds a Glib main context into libev, and finally, \f(CW\*(C`Glib::EV\*(C'\fR embeds \s-1EV\s0 1906embeds a Glib main context into libev, and finally, \f(CW\*(C`Glib::EV\*(C'\fR embeds \s-1EV\s0
1731the callbacks for the IO/timeout watchers might not have been called yet. 1913the callbacks for the IO/timeout watchers might not have been called yet.
1732.PP 1914.PP
1733.Vb 2 1915.Vb 2
1734\& static ev_io iow [nfd]; 1916\& static ev_io iow [nfd];
1735\& static ev_timer tw; 1917\& static ev_timer tw;
1736.Ve 1918\&
1737.PP
1738.Vb 4
1739\& static void 1919\& static void
1740\& io_cb (ev_loop *loop, ev_io *w, int revents) 1920\& io_cb (ev_loop *loop, ev_io *w, int revents)
1741\& { 1921\& {
1742\& } 1922\& }
1743.Ve 1923\&
1744.PP
1745.Vb 8
1746\& // create io watchers for each fd and a timer before blocking 1924\& // create io watchers for each fd and a timer before blocking
1747\& static void 1925\& static void
1748\& adns_prepare_cb (ev_loop *loop, ev_prepare *w, int revents) 1926\& adns_prepare_cb (ev_loop *loop, ev_prepare *w, int revents)
1749\& { 1927\& {
1750\& int timeout = 3600000; 1928\& int timeout = 3600000;
1751\& struct pollfd fds [nfd]; 1929\& struct pollfd fds [nfd];
1752\& // actual code will need to loop here and realloc etc. 1930\& // actual code will need to loop here and realloc etc.
1753\& adns_beforepoll (ads, fds, &nfd, &timeout, timeval_from (ev_time ())); 1931\& adns_beforepoll (ads, fds, &nfd, &timeout, timeval_from (ev_time ()));
1754.Ve 1932\&
1755.PP
1756.Vb 3
1757\& /* the callback is illegal, but won't be called as we stop during check */ 1933\& /* the callback is illegal, but won\*(Aqt be called as we stop during check */
1758\& ev_timer_init (&tw, 0, timeout * 1e-3); 1934\& ev_timer_init (&tw, 0, timeout * 1e\-3);
1759\& ev_timer_start (loop, &tw); 1935\& ev_timer_start (loop, &tw);
1760.Ve 1936\&
1761.PP
1762.Vb 6
1763\& // create one ev_io per pollfd 1937\& // create one ev_io per pollfd
1764\& for (int i = 0; i < nfd; ++i) 1938\& for (int i = 0; i < nfd; ++i)
1765\& { 1939\& {
1766\& ev_io_init (iow + i, io_cb, fds [i].fd, 1940\& ev_io_init (iow + i, io_cb, fds [i].fd,
1767\& ((fds [i].events & POLLIN ? EV_READ : 0) 1941\& ((fds [i].events & POLLIN ? EV_READ : 0)
1768\& | (fds [i].events & POLLOUT ? EV_WRITE : 0))); 1942\& | (fds [i].events & POLLOUT ? EV_WRITE : 0)));
1769.Ve 1943\&
1770.PP
1771.Vb 4
1772\& fds [i].revents = 0; 1944\& fds [i].revents = 0;
1773\& ev_io_start (loop, iow + i); 1945\& ev_io_start (loop, iow + i);
1774\& } 1946\& }
1775\& } 1947\& }
1776.Ve 1948\&
1777.PP
1778.Vb 5
1779\& // stop all watchers after blocking 1949\& // stop all watchers after blocking
1780\& static void 1950\& static void
1781\& adns_check_cb (ev_loop *loop, ev_check *w, int revents) 1951\& adns_check_cb (ev_loop *loop, ev_check *w, int revents)
1782\& { 1952\& {
1783\& ev_timer_stop (loop, &tw); 1953\& ev_timer_stop (loop, &tw);
1784.Ve 1954\&
1785.PP
1786.Vb 8
1787\& for (int i = 0; i < nfd; ++i) 1955\& for (int i = 0; i < nfd; ++i)
1788\& { 1956\& {
1789\& // set the relevant poll flags 1957\& // set the relevant poll flags
1790\& // could also call adns_processreadable etc. here 1958\& // could also call adns_processreadable etc. here
1791\& struct pollfd *fd = fds + i; 1959\& struct pollfd *fd = fds + i;
1792\& int revents = ev_clear_pending (iow + i); 1960\& int revents = ev_clear_pending (iow + i);
1793\& if (revents & EV_READ ) fd->revents |= fd->events & POLLIN; 1961\& if (revents & EV_READ ) fd\->revents |= fd\->events & POLLIN;
1794\& if (revents & EV_WRITE) fd->revents |= fd->events & POLLOUT; 1962\& if (revents & EV_WRITE) fd\->revents |= fd\->events & POLLOUT;
1795.Ve 1963\&
1796.PP
1797.Vb 3
1798\& // now stop the watcher 1964\& // now stop the watcher
1799\& ev_io_stop (loop, iow + i); 1965\& ev_io_stop (loop, iow + i);
1800\& } 1966\& }
1801.Ve 1967\&
1802.PP
1803.Vb 2
1804\& adns_afterpoll (adns, fds, nfd, timeval_from (ev_now (loop)); 1968\& adns_afterpoll (adns, fds, nfd, timeval_from (ev_now (loop));
1805\& } 1969\& }
1806.Ve 1970.Ve
1807.PP 1971.PP
1808Method 2: This would be just like method 1, but you run \f(CW\*(C`adns_afterpoll\*(C'\fR 1972Method 2: This would be just like method 1, but you run \f(CW\*(C`adns_afterpoll\*(C'\fR
1814.PP 1978.PP
1815.Vb 5 1979.Vb 5
1816\& static void 1980\& static void
1817\& timer_cb (EV_P_ ev_timer *w, int revents) 1981\& timer_cb (EV_P_ ev_timer *w, int revents)
1818\& { 1982\& {
1819\& adns_state ads = (adns_state)w->data; 1983\& adns_state ads = (adns_state)w\->data;
1820\& update_now (EV_A); 1984\& update_now (EV_A);
1821.Ve 1985\&
1822.PP
1823.Vb 2
1824\& adns_processtimeouts (ads, &tv_now); 1986\& adns_processtimeouts (ads, &tv_now);
1825\& } 1987\& }
1826.Ve 1988\&
1827.PP
1828.Vb 5
1829\& static void 1989\& static void
1830\& io_cb (EV_P_ ev_io *w, int revents) 1990\& io_cb (EV_P_ ev_io *w, int revents)
1831\& { 1991\& {
1832\& adns_state ads = (adns_state)w->data; 1992\& adns_state ads = (adns_state)w\->data;
1833\& update_now (EV_A); 1993\& update_now (EV_A);
1834.Ve 1994\&
1835.PP
1836.Vb 3
1837\& if (revents & EV_READ ) adns_processreadable (ads, w->fd, &tv_now); 1995\& if (revents & EV_READ ) adns_processreadable (ads, w\->fd, &tv_now);
1838\& if (revents & EV_WRITE) adns_processwriteable (ads, w->fd, &tv_now); 1996\& if (revents & EV_WRITE) adns_processwriteable (ads, w\->fd, &tv_now);
1839\& } 1997\& }
1840.Ve 1998\&
1841.PP
1842.Vb 1
1843\& // do not ever call adns_afterpoll 1999\& // do not ever call adns_afterpoll
1844.Ve 2000.Ve
1845.PP 2001.PP
1846Method 4: Do not use a prepare or check watcher because the module you 2002Method 4: Do not use a prepare or check watcher because the module you
1847want to embed is too inflexible to support it. Instead, youc na override 2003want to embed is too inflexible to support it. Instead, youc na override
1852.Vb 4 2008.Vb 4
1853\& static gint 2009\& static gint
1854\& event_poll_func (GPollFD *fds, guint nfds, gint timeout) 2010\& event_poll_func (GPollFD *fds, guint nfds, gint timeout)
1855\& { 2011\& {
1856\& int got_events = 0; 2012\& int got_events = 0;
1857.Ve 2013\&
1858.PP
1859.Vb 2
1860\& for (n = 0; n < nfds; ++n) 2014\& for (n = 0; n < nfds; ++n)
1861\& // create/start io watcher that sets the relevant bits in fds[n] and increment got_events 2015\& // create/start io watcher that sets the relevant bits in fds[n] and increment got_events
1862.Ve 2016\&
1863.PP
1864.Vb 2
1865\& if (timeout >= 0) 2017\& if (timeout >= 0)
1866\& // create/start timer 2018\& // create/start timer
1867.Ve 2019\&
1868.PP
1869.Vb 2
1870\& // poll 2020\& // poll
1871\& ev_loop (EV_A_ 0); 2021\& ev_loop (EV_A_ 0);
1872.Ve 2022\&
1873.PP
1874.Vb 3
1875\& // stop timer again 2023\& // stop timer again
1876\& if (timeout >= 0) 2024\& if (timeout >= 0)
1877\& ev_timer_stop (EV_A_ &to); 2025\& ev_timer_stop (EV_A_ &to);
1878.Ve 2026\&
1879.PP
1880.Vb 3
1881\& // stop io watchers again - their callbacks should have set 2027\& // stop io watchers again \- their callbacks should have set
1882\& for (n = 0; n < nfds; ++n) 2028\& for (n = 0; n < nfds; ++n)
1883\& ev_io_stop (EV_A_ iow [n]); 2029\& ev_io_stop (EV_A_ iow [n]);
1884.Ve 2030\&
1885.PP
1886.Vb 2
1887\& return got_events; 2031\& return got_events;
1888\& } 2032\& }
1889.Ve 2033.Ve
1890.ie n .Sh """ev_embed"" \- when one backend isn't enough..." 2034.ie n .Sh """ev_embed"" \- when one backend isn't enough..."
1891.el .Sh "\f(CWev_embed\fP \- when one backend isn't enough..." 2035.el .Sh "\f(CWev_embed\fP \- when one backend isn't enough..."
1935portable one. 2079portable one.
1936.PP 2080.PP
1937So when you want to use this feature you will always have to be prepared 2081So when you want to use this feature you will always have to be prepared
1938that you cannot get an embeddable loop. The recommended way to get around 2082that you cannot get an embeddable loop. The recommended way to get around
1939this is to have a separate variables for your embeddable loop, try to 2083this is to have a separate variables for your embeddable loop, try to
1940create it, and if that fails, use the normal loop for everything: 2084create it, and if that fails, use the normal loop for everything.
1941.PP
1942.Vb 3
1943\& struct ev_loop *loop_hi = ev_default_init (0);
1944\& struct ev_loop *loop_lo = 0;
1945\& struct ev_embed embed;
1946.Ve
1947.PP
1948.Vb 5
1949\& // see if there is a chance of getting one that works
1950\& // (remember that a flags value of 0 means autodetection)
1951\& loop_lo = ev_embeddable_backends () & ev_recommended_backends ()
1952\& ? ev_loop_new (ev_embeddable_backends () & ev_recommended_backends ())
1953\& : 0;
1954.Ve
1955.PP
1956.Vb 8
1957\& // if we got one, then embed it, otherwise default to loop_hi
1958\& if (loop_lo)
1959\& {
1960\& ev_embed_init (&embed, 0, loop_lo);
1961\& ev_embed_start (loop_hi, &embed);
1962\& }
1963\& else
1964\& loop_lo = loop_hi;
1965.Ve
1966.PP 2085.PP
1967\fIWatcher-Specific Functions and Data Members\fR 2086\fIWatcher-Specific Functions and Data Members\fR
1968.IX Subsection "Watcher-Specific Functions and Data Members" 2087.IX Subsection "Watcher-Specific Functions and Data Members"
1969.IP "ev_embed_init (ev_embed *, callback, struct ev_loop *embedded_loop)" 4 2088.IP "ev_embed_init (ev_embed *, callback, struct ev_loop *embedded_loop)" 4
1970.IX Item "ev_embed_init (ev_embed *, callback, struct ev_loop *embedded_loop)" 2089.IX Item "ev_embed_init (ev_embed *, callback, struct ev_loop *embedded_loop)"
1980.IP "ev_embed_sweep (loop, ev_embed *)" 4 2099.IP "ev_embed_sweep (loop, ev_embed *)" 4
1981.IX Item "ev_embed_sweep (loop, ev_embed *)" 2100.IX Item "ev_embed_sweep (loop, ev_embed *)"
1982Make a single, non-blocking sweep over the embedded loop. This works 2101Make a single, non-blocking sweep over the embedded loop. This works
1983similarly to \f(CW\*(C`ev_loop (embedded_loop, EVLOOP_NONBLOCK)\*(C'\fR, but in the most 2102similarly to \f(CW\*(C`ev_loop (embedded_loop, EVLOOP_NONBLOCK)\*(C'\fR, but in the most
1984apropriate way for embedded loops. 2103apropriate way for embedded loops.
1985.IP "struct ev_loop *loop [read\-only]" 4 2104.IP "struct ev_loop *other [read\-only]" 4
1986.IX Item "struct ev_loop *loop [read-only]" 2105.IX Item "struct ev_loop *other [read-only]"
1987The embedded event loop. 2106The embedded event loop.
2107.PP
2108\fIExamples\fR
2109.IX Subsection "Examples"
2110.PP
2111Example: Try to get an embeddable event loop and embed it into the default
2112event loop. If that is not possible, use the default loop. The default
2113loop is stored in \f(CW\*(C`loop_hi\*(C'\fR, while the mebeddable loop is stored in
2114\&\f(CW\*(C`loop_lo\*(C'\fR (which is \f(CW\*(C`loop_hi\*(C'\fR in the acse no embeddable loop can be
2115used).
2116.PP
2117.Vb 3
2118\& struct ev_loop *loop_hi = ev_default_init (0);
2119\& struct ev_loop *loop_lo = 0;
2120\& struct ev_embed embed;
2121\&
2122\& // see if there is a chance of getting one that works
2123\& // (remember that a flags value of 0 means autodetection)
2124\& loop_lo = ev_embeddable_backends () & ev_recommended_backends ()
2125\& ? ev_loop_new (ev_embeddable_backends () & ev_recommended_backends ())
2126\& : 0;
2127\&
2128\& // if we got one, then embed it, otherwise default to loop_hi
2129\& if (loop_lo)
2130\& {
2131\& ev_embed_init (&embed, 0, loop_lo);
2132\& ev_embed_start (loop_hi, &embed);
2133\& }
2134\& else
2135\& loop_lo = loop_hi;
2136.Ve
2137.PP
2138Example: Check if kqueue is available but not recommended and create
2139a kqueue backend for use with sockets (which usually work with any
2140kqueue implementation). Store the kqueue/socket\-only event loop in
2141\&\f(CW\*(C`loop_socket\*(C'\fR. (One might optionally use \f(CW\*(C`EVFLAG_NOENV\*(C'\fR, too).
2142.PP
2143.Vb 3
2144\& struct ev_loop *loop = ev_default_init (0);
2145\& struct ev_loop *loop_socket = 0;
2146\& struct ev_embed embed;
2147\&
2148\& if (ev_supported_backends () & ~ev_recommended_backends () & EVBACKEND_KQUEUE)
2149\& if ((loop_socket = ev_loop_new (EVBACKEND_KQUEUE))
2150\& {
2151\& ev_embed_init (&embed, 0, loop_socket);
2152\& ev_embed_start (loop, &embed);
2153\& }
2154\&
2155\& if (!loop_socket)
2156\& loop_socket = loop;
2157\&
2158\& // now use loop_socket for all sockets, and loop for everything else
2159.Ve
1988.ie n .Sh """ev_fork"" \- the audacity to resume the event loop after a fork" 2160.ie n .Sh """ev_fork"" \- the audacity to resume the event loop after a fork"
1989.el .Sh "\f(CWev_fork\fP \- the audacity to resume the event loop after a fork" 2161.el .Sh "\f(CWev_fork\fP \- the audacity to resume the event loop after a fork"
1990.IX Subsection "ev_fork - the audacity to resume the event loop after a fork" 2162.IX Subsection "ev_fork - the audacity to resume the event loop after a fork"
1991Fork watchers are called when a \f(CW\*(C`fork ()\*(C'\fR was detected (usually because 2163Fork watchers are called when a \f(CW\*(C`fork ()\*(C'\fR was detected (usually because
1992whoever is a good citizen cared to tell libev about it by calling 2164whoever is a good citizen cared to tell libev about it by calling
2034\& if (revents & EV_TIMEOUT) 2206\& if (revents & EV_TIMEOUT)
2035\& /* doh, nothing entered */; 2207\& /* doh, nothing entered */;
2036\& else if (revents & EV_READ) 2208\& else if (revents & EV_READ)
2037\& /* stdin might have data for us, joy! */; 2209\& /* stdin might have data for us, joy! */;
2038\& } 2210\& }
2039.Ve 2211\&
2040.Sp
2041.Vb 1
2042\& ev_once (STDIN_FILENO, EV_READ, 10., stdin_ready, 0); 2212\& ev_once (STDIN_FILENO, EV_READ, 10., stdin_ready, 0);
2043.Ve 2213.Ve
2044.IP "ev_feed_event (ev_loop *, watcher *, int revents)" 4 2214.IP "ev_feed_event (ev_loop *, watcher *, int revents)" 4
2045.IX Item "ev_feed_event (ev_loop *, watcher *, int revents)" 2215.IX Item "ev_feed_event (ev_loop *, watcher *, int revents)"
2046Feeds the given event set into the event loop, as if the specified event 2216Feeds the given event set into the event loop, as if the specified event
2056loop!). 2226loop!).
2057.SH "LIBEVENT EMULATION" 2227.SH "LIBEVENT EMULATION"
2058.IX Header "LIBEVENT EMULATION" 2228.IX Header "LIBEVENT EMULATION"
2059Libev offers a compatibility emulation layer for libevent. It cannot 2229Libev offers a compatibility emulation layer for libevent. It cannot
2060emulate the internals of libevent, so here are some usage hints: 2230emulate the internals of libevent, so here are some usage hints:
2231.IP "\(bu" 4
2061.IP "* Use it by including <event.h>, as usual." 4 2232Use it by including <event.h>, as usual.
2062.IX Item "Use it by including <event.h>, as usual." 2233.IP "\(bu" 4
2063.PD 0 2234The following members are fully supported: ev_base, ev_callback,
2064.IP "* The following members are fully supported: ev_base, ev_callback, ev_arg, ev_fd, ev_res, ev_events." 4 2235ev_arg, ev_fd, ev_res, ev_events.
2065.IX Item "The following members are fully supported: ev_base, ev_callback, ev_arg, ev_fd, ev_res, ev_events." 2236.IP "\(bu" 4
2066.IP "* Avoid using ev_flags and the EVLIST_*\-macros, while it is maintained by libev, it does not work exactly the same way as in libevent (consider it a private \s-1API\s0)." 4 2237Avoid using ev_flags and the EVLIST_*\-macros, while it is
2067.IX Item "Avoid using ev_flags and the EVLIST_*-macros, while it is maintained by libev, it does not work exactly the same way as in libevent (consider it a private API)." 2238maintained by libev, it does not work exactly the same way as in libevent (consider
2068.IP "* Priorities are not currently supported. Initialising priorities will fail and all watchers will have the same priority, even though there is an ev_pri field." 4 2239it a private \s-1API\s0).
2069.IX Item "Priorities are not currently supported. Initialising priorities will fail and all watchers will have the same priority, even though there is an ev_pri field." 2240.IP "\(bu" 4
2241Priorities are not currently supported. Initialising priorities
2242will fail and all watchers will have the same priority, even though there
2243is an ev_pri field.
2244.IP "\(bu" 4
2070.IP "* Other members are not supported." 4 2245Other members are not supported.
2071.IX Item "Other members are not supported." 2246.IP "\(bu" 4
2072.IP "* The libev emulation is \fInot\fR \s-1ABI\s0 compatible to libevent, you need to use the libev header file and library." 4 2247The libev emulation is \fInot\fR \s-1ABI\s0 compatible to libevent, you need
2073.IX Item "The libev emulation is not ABI compatible to libevent, you need to use the libev header file and library." 2248to use the libev header file and library.
2074.PD
2075.SH "\*(C+ SUPPORT" 2249.SH "\*(C+ SUPPORT"
2076.IX Header " SUPPORT" 2250.IX Header " SUPPORT"
2077Libev comes with some simplistic wrapper classes for \*(C+ that mainly allow 2251Libev comes with some simplistic wrapper classes for \*(C+ that mainly allow
2078you to use some convinience methods to start/stop watchers and also change 2252you to use some convinience methods to start/stop watchers and also change
2079the callback model to a model using method callbacks on objects. 2253the callback model to a model using method callbacks on objects.
2159.Vb 4 2333.Vb 4
2160\& struct myclass 2334\& struct myclass
2161\& { 2335\& {
2162\& void io_cb (ev::io &w, int revents) { } 2336\& void io_cb (ev::io &w, int revents) { }
2163\& } 2337\& }
2164.Ve 2338\&
2165.Sp
2166.Vb 3
2167\& myclass obj; 2339\& myclass obj;
2168\& ev::io iow; 2340\& ev::io iow;
2169\& iow.set <myclass, &myclass::io_cb> (&obj); 2341\& iow.set <myclass, &myclass::io_cb> (&obj);
2170.Ve 2342.Ve
2171.IP "w\->set<function> (void *data = 0)" 4 2343.IP "w\->set<function> (void *data = 0)" 4
2199Starts the watcher. Note that there is no \f(CW\*(C`loop\*(C'\fR argument, as the 2371Starts the watcher. Note that there is no \f(CW\*(C`loop\*(C'\fR argument, as the
2200constructor already stores the event loop. 2372constructor already stores the event loop.
2201.IP "w\->stop ()" 4 2373.IP "w\->stop ()" 4
2202.IX Item "w->stop ()" 2374.IX Item "w->stop ()"
2203Stops the watcher if it is active. Again, no \f(CW\*(C`loop\*(C'\fR argument. 2375Stops the watcher if it is active. Again, no \f(CW\*(C`loop\*(C'\fR argument.
2204.ie n .IP "w\->again () ""ev::timer""\fR, \f(CW""ev::periodic"" only" 4 2376.ie n .IP "w\->again () (""ev::timer""\fR, \f(CW""ev::periodic"" only)" 4
2205.el .IP "w\->again () \f(CWev::timer\fR, \f(CWev::periodic\fR only" 4 2377.el .IP "w\->again () (\f(CWev::timer\fR, \f(CWev::periodic\fR only)" 4
2206.IX Item "w->again () ev::timer, ev::periodic only" 2378.IX Item "w->again () (ev::timer, ev::periodic only)"
2207For \f(CW\*(C`ev::timer\*(C'\fR and \f(CW\*(C`ev::periodic\*(C'\fR, this invokes the corresponding 2379For \f(CW\*(C`ev::timer\*(C'\fR and \f(CW\*(C`ev::periodic\*(C'\fR, this invokes the corresponding
2208\&\f(CW\*(C`ev_TYPE_again\*(C'\fR function. 2380\&\f(CW\*(C`ev_TYPE_again\*(C'\fR function.
2209.ie n .IP "w\->sweep () ""ev::embed"" only" 4 2381.ie n .IP "w\->sweep () (""ev::embed"" only)" 4
2210.el .IP "w\->sweep () \f(CWev::embed\fR only" 4 2382.el .IP "w\->sweep () (\f(CWev::embed\fR only)" 4
2211.IX Item "w->sweep () ev::embed only" 2383.IX Item "w->sweep () (ev::embed only)"
2212Invokes \f(CW\*(C`ev_embed_sweep\*(C'\fR. 2384Invokes \f(CW\*(C`ev_embed_sweep\*(C'\fR.
2213.ie n .IP "w\->update () ""ev::stat"" only" 4 2385.ie n .IP "w\->update () (""ev::stat"" only)" 4
2214.el .IP "w\->update () \f(CWev::stat\fR only" 4 2386.el .IP "w\->update () (\f(CWev::stat\fR only)" 4
2215.IX Item "w->update () ev::stat only" 2387.IX Item "w->update () (ev::stat only)"
2216Invokes \f(CW\*(C`ev_stat_stat\*(C'\fR. 2388Invokes \f(CW\*(C`ev_stat_stat\*(C'\fR.
2217.RE 2389.RE
2218.RS 4 2390.RS 4
2219.RE 2391.RE
2220.PP 2392.PP
2222the constructor. 2394the constructor.
2223.PP 2395.PP
2224.Vb 4 2396.Vb 4
2225\& class myclass 2397\& class myclass
2226\& { 2398\& {
2227\& ev_io io; void io_cb (ev::io &w, int revents); 2399\& ev::io io; void io_cb (ev::io &w, int revents);
2228\& ev_idle idle void idle_cb (ev::idle &w, int revents); 2400\& ev:idle idle void idle_cb (ev::idle &w, int revents);
2229.Ve 2401\&
2230.PP
2231.Vb 2
2232\& myclass (); 2402\& myclass (int fd)
2233\& }
2234.Ve
2235.PP
2236.Vb 4
2237\& myclass::myclass (int fd)
2238\& { 2403\& {
2239\& io .set <myclass, &myclass::io_cb > (this); 2404\& io .set <myclass, &myclass::io_cb > (this);
2240\& idle.set <myclass, &myclass::idle_cb> (this); 2405\& idle.set <myclass, &myclass::idle_cb> (this);
2241.Ve 2406\&
2242.PP
2243.Vb 2
2244\& io.start (fd, ev::READ); 2407\& io.start (fd, ev::READ);
2408\& }
2245\& } 2409\& };
2246.Ve 2410.Ve
2247.SH "MACRO MAGIC" 2411.SH "MACRO MAGIC"
2248.IX Header "MACRO MAGIC" 2412.IX Header "MACRO MAGIC"
2249Libev can be compiled with a variety of options, the most fundemantal is 2413Libev can be compiled with a variety of options, the most fundamantal
2250\&\f(CW\*(C`EV_MULTIPLICITY\*(C'\fR. This option determines whether (most) functions and 2414of which is \f(CW\*(C`EV_MULTIPLICITY\*(C'\fR. This option determines whether (most)
2251callbacks have an initial \f(CW\*(C`struct ev_loop *\*(C'\fR argument. 2415functions and callbacks have an initial \f(CW\*(C`struct ev_loop *\*(C'\fR argument.
2252.PP 2416.PP
2253To make it easier to write programs that cope with either variant, the 2417To make it easier to write programs that cope with either variant, the
2254following macros are defined: 2418following macros are defined:
2255.ie n .IP """EV_A""\fR, \f(CW""EV_A_""" 4 2419.ie n .IP """EV_A""\fR, \f(CW""EV_A_""" 4
2256.el .IP "\f(CWEV_A\fR, \f(CWEV_A_\fR" 4 2420.el .IP "\f(CWEV_A\fR, \f(CWEV_A_\fR" 4
2275\&\f(CW\*(C`EV_P_\*(C'\fR is used when other parameters are following. Example: 2439\&\f(CW\*(C`EV_P_\*(C'\fR is used when other parameters are following. Example:
2276.Sp 2440.Sp
2277.Vb 2 2441.Vb 2
2278\& // this is how ev_unref is being declared 2442\& // this is how ev_unref is being declared
2279\& static void ev_unref (EV_P); 2443\& static void ev_unref (EV_P);
2280.Ve 2444\&
2281.Sp
2282.Vb 2
2283\& // this is how you can declare your typical callback 2445\& // this is how you can declare your typical callback
2284\& static void cb (EV_P_ ev_timer *w, int revents) 2446\& static void cb (EV_P_ ev_timer *w, int revents)
2285.Ve 2447.Ve
2286.Sp 2448.Sp
2287It declares a parameter \f(CW\*(C`loop\*(C'\fR of type \f(CW\*(C`struct ev_loop *\*(C'\fR, quite 2449It declares a parameter \f(CW\*(C`loop\*(C'\fR of type \f(CW\*(C`struct ev_loop *\*(C'\fR, quite
2300\& static void 2462\& static void
2301\& check_cb (EV_P_ ev_timer *w, int revents) 2463\& check_cb (EV_P_ ev_timer *w, int revents)
2302\& { 2464\& {
2303\& ev_check_stop (EV_A_ w); 2465\& ev_check_stop (EV_A_ w);
2304\& } 2466\& }
2305.Ve 2467\&
2306.PP
2307.Vb 4
2308\& ev_check check; 2468\& ev_check check;
2309\& ev_check_init (&check, check_cb); 2469\& ev_check_init (&check, check_cb);
2310\& ev_check_start (EV_DEFAULT_ &check); 2470\& ev_check_start (EV_DEFAULT_ &check);
2311\& ev_loop (EV_DEFAULT_ 0); 2471\& ev_loop (EV_DEFAULT_ 0);
2312.Ve 2472.Ve
2313.SH "EMBEDDING" 2473.SH "EMBEDDING"
2314.IX Header "EMBEDDING" 2474.IX Header "EMBEDDING"
2315Libev can (and often is) directly embedded into host 2475Libev can (and often is) directly embedded into host
2316applications. Examples of applications that embed it include the Deliantra 2476applications. Examples of applications that embed it include the Deliantra
2317Game Server, the \s-1EV\s0 perl module, the \s-1GNU\s0 Virtual Private Ethernet (gvpe) 2477Game Server, the \s-1EV\s0 perl module, the \s-1GNU\s0 Virtual Private Ethernet (gvpe)
2318and rxvt\-unicode. 2478and rxvt-unicode.
2319.PP 2479.PP
2320The goal is to enable you to just copy the neecssary files into your 2480The goal is to enable you to just copy the necessary files into your
2321source directory without having to change even a single line in them, so 2481source directory without having to change even a single line in them, so
2322you can easily upgrade by simply copying (or having a checked-out copy of 2482you can easily upgrade by simply copying (or having a checked-out copy of
2323libev somewhere in your source tree). 2483libev somewhere in your source tree).
2324.Sh "\s-1FILESETS\s0" 2484.Sh "\s-1FILESETS\s0"
2325.IX Subsection "FILESETS" 2485.IX Subsection "FILESETS"
2358.Vb 4 2518.Vb 4
2359\& ev.h 2519\& ev.h
2360\& ev.c 2520\& ev.c
2361\& ev_vars.h 2521\& ev_vars.h
2362\& ev_wrap.h 2522\& ev_wrap.h
2363.Ve 2523\&
2364.PP
2365.Vb 1
2366\& ev_win32.c required on win32 platforms only 2524\& ev_win32.c required on win32 platforms only
2367.Ve 2525\&
2368.PP
2369.Vb 5
2370\& ev_select.c only when select backend is enabled (which is enabled by default) 2526\& ev_select.c only when select backend is enabled (which is enabled by default)
2371\& ev_poll.c only when poll backend is enabled (disabled by default) 2527\& ev_poll.c only when poll backend is enabled (disabled by default)
2372\& ev_epoll.c only when the epoll backend is enabled (disabled by default) 2528\& ev_epoll.c only when the epoll backend is enabled (disabled by default)
2373\& ev_kqueue.c only when the kqueue backend is enabled (disabled by default) 2529\& ev_kqueue.c only when the kqueue backend is enabled (disabled by default)
2374\& ev_port.c only when the solaris port backend is enabled (disabled by default) 2530\& ev_port.c only when the solaris port backend is enabled (disabled by default)
2430.IX Item "EV_USE_MONOTONIC" 2586.IX Item "EV_USE_MONOTONIC"
2431If defined to be \f(CW1\fR, libev will try to detect the availability of the 2587If defined to be \f(CW1\fR, libev will try to detect the availability of the
2432monotonic clock option at both compiletime and runtime. Otherwise no use 2588monotonic clock option at both compiletime and runtime. Otherwise no use
2433of the monotonic clock option will be attempted. If you enable this, you 2589of the monotonic clock option will be attempted. If you enable this, you
2434usually have to link against librt or something similar. Enabling it when 2590usually have to link against librt or something similar. Enabling it when
2435the functionality isn't available is safe, though, althoguh you have 2591the functionality isn't available is safe, though, although you have
2436to make sure you link against any libraries where the \f(CW\*(C`clock_gettime\*(C'\fR 2592to make sure you link against any libraries where the \f(CW\*(C`clock_gettime\*(C'\fR
2437function is hiding in (often \fI\-lrt\fR). 2593function is hiding in (often \fI\-lrt\fR).
2438.IP "\s-1EV_USE_REALTIME\s0" 4 2594.IP "\s-1EV_USE_REALTIME\s0" 4
2439.IX Item "EV_USE_REALTIME" 2595.IX Item "EV_USE_REALTIME"
2440If defined to be \f(CW1\fR, libev will try to detect the availability of the 2596If defined to be \f(CW1\fR, libev will try to detect the availability of the
2441realtime clock option at compiletime (and assume its availability at 2597realtime clock option at compiletime (and assume its availability at
2442runtime if successful). Otherwise no use of the realtime clock option will 2598runtime if successful). Otherwise no use of the realtime clock option will
2443be attempted. This effectively replaces \f(CW\*(C`gettimeofday\*(C'\fR by \f(CW\*(C`clock_get 2599be attempted. This effectively replaces \f(CW\*(C`gettimeofday\*(C'\fR by \f(CW\*(C`clock_get
2444(CLOCK_REALTIME, ...)\*(C'\fR and will not normally affect correctness. See tzhe note about libraries 2600(CLOCK_REALTIME, ...)\*(C'\fR and will not normally affect correctness. See the
2445in the description of \f(CW\*(C`EV_USE_MONOTONIC\*(C'\fR, though. 2601note about libraries in the description of \f(CW\*(C`EV_USE_MONOTONIC\*(C'\fR, though.
2602.IP "\s-1EV_USE_NANOSLEEP\s0" 4
2603.IX Item "EV_USE_NANOSLEEP"
2604If defined to be \f(CW1\fR, libev will assume that \f(CW\*(C`nanosleep ()\*(C'\fR is available
2605and will use it for delays. Otherwise it will use \f(CW\*(C`select ()\*(C'\fR.
2446.IP "\s-1EV_USE_SELECT\s0" 4 2606.IP "\s-1EV_USE_SELECT\s0" 4
2447.IX Item "EV_USE_SELECT" 2607.IX Item "EV_USE_SELECT"
2448If undefined or defined to be \f(CW1\fR, libev will compile in support for the 2608If undefined or defined to be \f(CW1\fR, libev will compile in support for the
2449\&\f(CW\*(C`select\*(C'\fR(2) backend. No attempt at autodetection will be done: if no 2609\&\f(CW\*(C`select\*(C'\fR(2) backend. No attempt at autodetection will be done: if no
2450other method takes over, select will be it. Otherwise the select backend 2610other method takes over, select will be it. Otherwise the select backend
2465wants osf handles on win32 (this is the case when the select to 2625wants osf handles on win32 (this is the case when the select to
2466be used is the winsock select). This means that it will call 2626be used is the winsock select). This means that it will call
2467\&\f(CW\*(C`_get_osfhandle\*(C'\fR on the fd to convert it to an \s-1OS\s0 handle. Otherwise, 2627\&\f(CW\*(C`_get_osfhandle\*(C'\fR on the fd to convert it to an \s-1OS\s0 handle. Otherwise,
2468it is assumed that all these functions actually work on fds, even 2628it is assumed that all these functions actually work on fds, even
2469on win32. Should not be defined on non\-win32 platforms. 2629on win32. Should not be defined on non\-win32 platforms.
2630.IP "\s-1EV_FD_TO_WIN32_HANDLE\s0" 4
2631.IX Item "EV_FD_TO_WIN32_HANDLE"
2632If \f(CW\*(C`EV_SELECT_IS_WINSOCKET\*(C'\fR is enabled, then libev needs a way to map
2633file descriptors to socket handles. When not defining this symbol (the
2634default), then libev will call \f(CW\*(C`_get_osfhandle\*(C'\fR, which is usually
2635correct. In some cases, programs use their own file descriptor management,
2636in which case they can provide this function to map fds to socket handles.
2470.IP "\s-1EV_USE_POLL\s0" 4 2637.IP "\s-1EV_USE_POLL\s0" 4
2471.IX Item "EV_USE_POLL" 2638.IX Item "EV_USE_POLL"
2472If defined to be \f(CW1\fR, libev will compile in support for the \f(CW\*(C`poll\*(C'\fR(2) 2639If defined to be \f(CW1\fR, libev will compile in support for the \f(CW\*(C`poll\*(C'\fR(2)
2473backend. Otherwise it will be enabled on non\-win32 platforms. It 2640backend. Otherwise it will be enabled on non\-win32 platforms. It
2474takes precedence over select. 2641takes precedence over select.
2504interface to speed up \f(CW\*(C`ev_stat\*(C'\fR watchers. Its actual availability will 2671interface to speed up \f(CW\*(C`ev_stat\*(C'\fR watchers. Its actual availability will
2505be detected at runtime. 2672be detected at runtime.
2506.IP "\s-1EV_H\s0" 4 2673.IP "\s-1EV_H\s0" 4
2507.IX Item "EV_H" 2674.IX Item "EV_H"
2508The name of the \fIev.h\fR header file used to include it. The default if 2675The name of the \fIev.h\fR header file used to include it. The default if
2509undefined is \f(CW\*(C`<ev.h>\*(C'\fR in \fIevent.h\fR and \f(CW"ev.h"\fR in \fIev.c\fR. This 2676undefined is \f(CW"ev.h"\fR in \fIevent.h\fR, \fIev.c\fR and \fIev++.h\fR. This can be
2510can be used to virtually rename the \fIev.h\fR header file in case of conflicts. 2677used to virtually rename the \fIev.h\fR header file in case of conflicts.
2511.IP "\s-1EV_CONFIG_H\s0" 4 2678.IP "\s-1EV_CONFIG_H\s0" 4
2512.IX Item "EV_CONFIG_H" 2679.IX Item "EV_CONFIG_H"
2513If \f(CW\*(C`EV_STANDALONE\*(C'\fR isn't \f(CW1\fR, this variable can be used to override 2680If \f(CW\*(C`EV_STANDALONE\*(C'\fR isn't \f(CW1\fR, this variable can be used to override
2514\&\fIev.c\fR's idea of where to find the \fIconfig.h\fR file, similarly to 2681\&\fIev.c\fR's idea of where to find the \fIconfig.h\fR file, similarly to
2515\&\f(CW\*(C`EV_H\*(C'\fR, above. 2682\&\f(CW\*(C`EV_H\*(C'\fR, above.
2516.IP "\s-1EV_EVENT_H\s0" 4 2683.IP "\s-1EV_EVENT_H\s0" 4
2517.IX Item "EV_EVENT_H" 2684.IX Item "EV_EVENT_H"
2518Similarly to \f(CW\*(C`EV_H\*(C'\fR, this macro can be used to override \fIevent.c\fR's idea 2685Similarly to \f(CW\*(C`EV_H\*(C'\fR, this macro can be used to override \fIevent.c\fR's idea
2519of how the \fIevent.h\fR header can be found. 2686of how the \fIevent.h\fR header can be found, the default is \f(CW"event.h"\fR.
2520.IP "\s-1EV_PROTOTYPES\s0" 4 2687.IP "\s-1EV_PROTOTYPES\s0" 4
2521.IX Item "EV_PROTOTYPES" 2688.IX Item "EV_PROTOTYPES"
2522If defined to be \f(CW0\fR, then \fIev.h\fR will not define any function 2689If defined to be \f(CW0\fR, then \fIev.h\fR will not define any function
2523prototypes, but still define all the structs and other symbols. This is 2690prototypes, but still define all the structs and other symbols. This is
2524occasionally useful if you want to provide your own wrapper functions 2691occasionally useful if you want to provide your own wrapper functions
2581pid. The default size is \f(CW16\fR (or \f(CW1\fR with \f(CW\*(C`EV_MINIMAL\*(C'\fR), usually more 2748pid. The default size is \f(CW16\fR (or \f(CW1\fR with \f(CW\*(C`EV_MINIMAL\*(C'\fR), usually more
2582than enough. If you need to manage thousands of children you might want to 2749than enough. If you need to manage thousands of children you might want to
2583increase this value (\fImust\fR be a power of two). 2750increase this value (\fImust\fR be a power of two).
2584.IP "\s-1EV_INOTIFY_HASHSIZE\s0" 4 2751.IP "\s-1EV_INOTIFY_HASHSIZE\s0" 4
2585.IX Item "EV_INOTIFY_HASHSIZE" 2752.IX Item "EV_INOTIFY_HASHSIZE"
2586\&\f(CW\*(C`ev_staz\*(C'\fR watchers use a small hash table to distribute workload by 2753\&\f(CW\*(C`ev_stat\*(C'\fR watchers use a small hash table to distribute workload by
2587inotify watch id. The default size is \f(CW16\fR (or \f(CW1\fR with \f(CW\*(C`EV_MINIMAL\*(C'\fR), 2754inotify watch id. The default size is \f(CW16\fR (or \f(CW1\fR with \f(CW\*(C`EV_MINIMAL\*(C'\fR),
2588usually more than enough. If you need to manage thousands of \f(CW\*(C`ev_stat\*(C'\fR 2755usually more than enough. If you need to manage thousands of \f(CW\*(C`ev_stat\*(C'\fR
2589watchers you might want to increase this value (\fImust\fR be a power of 2756watchers you might want to increase this value (\fImust\fR be a power of
2590two). 2757two).
2591.IP "\s-1EV_COMMON\s0" 4 2758.IP "\s-1EV_COMMON\s0" 4
2610.IP "ev_set_cb (ev, cb)" 4 2777.IP "ev_set_cb (ev, cb)" 4
2611.IX Item "ev_set_cb (ev, cb)" 2778.IX Item "ev_set_cb (ev, cb)"
2612.PD 2779.PD
2613Can be used to change the callback member declaration in each watcher, 2780Can be used to change the callback member declaration in each watcher,
2614and the way callbacks are invoked and set. Must expand to a struct member 2781and the way callbacks are invoked and set. Must expand to a struct member
2615definition and a statement, respectively. See the \fIev.v\fR header file for 2782definition and a statement, respectively. See the \fIev.h\fR header file for
2616their default definitions. One possible use for overriding these is to 2783their default definitions. One possible use for overriding these is to
2617avoid the \f(CW\*(C`struct ev_loop *\*(C'\fR as first argument in all cases, or to use 2784avoid the \f(CW\*(C`struct ev_loop *\*(C'\fR as first argument in all cases, or to use
2618method calls instead of plain function calls in \*(C+. 2785method calls instead of plain function calls in \*(C+.
2786.Sh "\s-1EXPORTED\s0 \s-1API\s0 \s-1SYMBOLS\s0"
2787.IX Subsection "EXPORTED API SYMBOLS"
2788If you need to re-export the \s-1API\s0 (e.g. via a dll) and you need a list of
2789exported symbols, you can use the provided \fISymbol.*\fR files which list
2790all public symbols, one per line:
2791.PP
2792.Vb 2
2793\& Symbols.ev for libev proper
2794\& Symbols.event for the libevent emulation
2795.Ve
2796.PP
2797This can also be used to rename all public symbols to avoid clashes with
2798multiple versions of libev linked together (which is obviously bad in
2799itself, but sometimes it is inconvinient to avoid this).
2800.PP
2801A sed command like this will create wrapper \f(CW\*(C`#define\*(C'\fR's that you need to
2802include before including \fIev.h\fR:
2803.PP
2804.Vb 1
2805\& <Symbols.ev sed \-e "s/.*/#define & myprefix_&/" >wrap.h
2806.Ve
2807.PP
2808This would create a file \fIwrap.h\fR which essentially looks like this:
2809.PP
2810.Vb 4
2811\& #define ev_backend myprefix_ev_backend
2812\& #define ev_check_start myprefix_ev_check_start
2813\& #define ev_check_stop myprefix_ev_check_stop
2814\& ...
2815.Ve
2619.Sh "\s-1EXAMPLES\s0" 2816.Sh "\s-1EXAMPLES\s0"
2620.IX Subsection "EXAMPLES" 2817.IX Subsection "EXAMPLES"
2621For a real-world example of a program the includes libev 2818For a real-world example of a program the includes libev
2622verbatim, you can have a look at the \s-1EV\s0 perl module 2819verbatim, you can have a look at the \s-1EV\s0 perl module
2623(<http://software.schmorp.de/pkg/EV.html>). It has the libev files in 2820(<http://software.schmorp.de/pkg/EV.html>). It has the libev files in
2624the \fIlibev/\fR subdirectory and includes them in the \fI\s-1EV/EVAPI\s0.h\fR (public 2821the \fIlibev/\fR subdirectory and includes them in the \fI\s-1EV/EVAPI\s0.h\fR (public
2625interface) and \fI\s-1EV\s0.xs\fR (implementation) files. Only the \fI\s-1EV\s0.xs\fR file 2822interface) and \fI\s-1EV\s0.xs\fR (implementation) files. Only the \fI\s-1EV\s0.xs\fR file
2626will be compiled. It is pretty complex because it provides its own header 2823will be compiled. It is pretty complex because it provides its own header
2627file. 2824file.
2628.Sp 2825.PP
2629The usage in rxvt-unicode is simpler. It has a \fIev_cpp.h\fR header file 2826The usage in rxvt-unicode is simpler. It has a \fIev_cpp.h\fR header file
2630that everybody includes and which overrides some configure choices: 2827that everybody includes and which overrides some configure choices:
2631.Sp 2828.PP
2632.Vb 9 2829.Vb 9
2633\& #define EV_MINIMAL 1 2830\& #define EV_MINIMAL 1
2634\& #define EV_USE_POLL 0 2831\& #define EV_USE_POLL 0
2635\& #define EV_MULTIPLICITY 0 2832\& #define EV_MULTIPLICITY 0
2636\& #define EV_PERIODIC_ENABLE 0 2833\& #define EV_PERIODIC_ENABLE 0
2637\& #define EV_STAT_ENABLE 0 2834\& #define EV_STAT_ENABLE 0
2638\& #define EV_FORK_ENABLE 0 2835\& #define EV_FORK_ENABLE 0
2639\& #define EV_CONFIG_H <config.h> 2836\& #define EV_CONFIG_H <config.h>
2640\& #define EV_MINPRI 0 2837\& #define EV_MINPRI 0
2641\& #define EV_MAXPRI 0 2838\& #define EV_MAXPRI 0
2642.Ve 2839\&
2643.Sp
2644.Vb 1
2645\& #include "ev++.h" 2840\& #include "ev++.h"
2646.Ve 2841.Ve
2647.Sp 2842.PP
2648And a \fIev_cpp.C\fR implementation file that contains libev proper and is compiled: 2843And a \fIev_cpp.C\fR implementation file that contains libev proper and is compiled:
2649.Sp 2844.PP
2650.Vb 2 2845.Vb 2
2651\& #include "ev_cpp.h" 2846\& #include "ev_cpp.h"
2652\& #include "ev.c" 2847\& #include "ev.c"
2653.Ve 2848.Ve
2654.SH "COMPLEXITIES" 2849.SH "COMPLEXITIES"
2655.IX Header "COMPLEXITIES" 2850.IX Header "COMPLEXITIES"
2656In this section the complexities of (many of) the algorithms used inside 2851In this section the complexities of (many of) the algorithms used inside
2657libev will be explained. For complexity discussions about backends see the 2852libev will be explained. For complexity discussions about backends see the
2658documentation for \f(CW\*(C`ev_default_init\*(C'\fR. 2853documentation for \f(CW\*(C`ev_default_init\*(C'\fR.
2659.Sp 2854.PP
2660All of the following are about amortised time: If an array needs to be 2855All of the following are about amortised time: If an array needs to be
2661extended, libev needs to realloc and move the whole array, but this 2856extended, libev needs to realloc and move the whole array, but this
2662happens asymptotically never with higher number of elements, so O(1) might 2857happens asymptotically never with higher number of elements, so O(1) might
2663mean it might do a lengthy realloc operation in rare cases, but on average 2858mean it might do a lengthy realloc operation in rare cases, but on average
2664it is much faster and asymptotically approaches constant time. 2859it is much faster and asymptotically approaches constant time.
2665.RS 4
2666.IP "Starting and stopping timer/periodic watchers: O(log skipped_other_timers)" 4 2860.IP "Starting and stopping timer/periodic watchers: O(log skipped_other_timers)" 4
2667.IX Item "Starting and stopping timer/periodic watchers: O(log skipped_other_timers)" 2861.IX Item "Starting and stopping timer/periodic watchers: O(log skipped_other_timers)"
2668This means that, when you have a watcher that triggers in one hour and 2862This means that, when you have a watcher that triggers in one hour and
2669there are 100 watchers that would trigger before that then inserting will 2863there are 100 watchers that would trigger before that then inserting will
2670have to skip those 100 watchers. 2864have to skip roughly seven (\f(CW\*(C`ld 100\*(C'\fR) of these watchers.
2671.IP "Changing timer/periodic watchers (by autorepeat, again): O(log skipped_other_timers)" 4 2865.IP "Changing timer/periodic watchers (by autorepeat or calling again): O(log skipped_other_timers)" 4
2672.IX Item "Changing timer/periodic watchers (by autorepeat, again): O(log skipped_other_timers)" 2866.IX Item "Changing timer/periodic watchers (by autorepeat or calling again): O(log skipped_other_timers)"
2673That means that for changing a timer costs less than removing/adding them 2867That means that changing a timer costs less than removing/adding them
2674as only the relative motion in the event queue has to be paid for. 2868as only the relative motion in the event queue has to be paid for.
2675.IP "Starting io/check/prepare/idle/signal/child watchers: O(1)" 4 2869.IP "Starting io/check/prepare/idle/signal/child watchers: O(1)" 4
2676.IX Item "Starting io/check/prepare/idle/signal/child watchers: O(1)" 2870.IX Item "Starting io/check/prepare/idle/signal/child watchers: O(1)"
2677These just add the watcher into an array or at the head of a list. 2871These just add the watcher into an array or at the head of a list.
2872.IP "Stopping check/prepare/idle watchers: O(1)" 4
2678=item Stopping check/prepare/idle watchers: O(1) 2873.IX Item "Stopping check/prepare/idle watchers: O(1)"
2874.PD 0
2679.IP "Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % \s-1EV_PID_HASHSIZE\s0))" 4 2875.IP "Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % \s-1EV_PID_HASHSIZE\s0))" 4
2680.IX Item "Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % EV_PID_HASHSIZE))" 2876.IX Item "Stopping an io/signal/child watcher: O(number_of_watchers_for_this_(fd/signal/pid % EV_PID_HASHSIZE))"
2877.PD
2681These watchers are stored in lists then need to be walked to find the 2878These watchers are stored in lists then need to be walked to find the
2682correct watcher to remove. The lists are usually short (you don't usually 2879correct watcher to remove. The lists are usually short (you don't usually
2683have many watchers waiting for the same fd or signal). 2880have many watchers waiting for the same fd or signal).
2684.IP "Finding the next timer per loop iteration: O(1)" 4 2881.IP "Finding the next timer in each loop iteration: O(1)" 4
2685.IX Item "Finding the next timer per loop iteration: O(1)" 2882.IX Item "Finding the next timer in each loop iteration: O(1)"
2686.PD 0 2883By virtue of using a binary heap, the next timer is always found at the
2884beginning of the storage array.
2687.IP "Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)" 4 2885.IP "Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)" 4
2688.IX Item "Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)" 2886.IX Item "Each change on a file descriptor per loop iteration: O(number_of_watchers_for_this_fd)"
2689.PD
2690A change means an I/O watcher gets started or stopped, which requires 2887A change means an I/O watcher gets started or stopped, which requires
2691libev to recalculate its status (and possibly tell the kernel). 2888libev to recalculate its status (and possibly tell the kernel, depending
2692.IP "Activating one watcher: O(1)" 4 2889on backend and wether \f(CW\*(C`ev_io_set\*(C'\fR was used).
2693.IX Item "Activating one watcher: O(1)" 2890.IP "Activating one watcher (putting it into the pending state): O(1)" 4
2891.IX Item "Activating one watcher (putting it into the pending state): O(1)"
2694.PD 0 2892.PD 0
2695.IP "Priority handling: O(number_of_priorities)" 4 2893.IP "Priority handling: O(number_of_priorities)" 4
2696.IX Item "Priority handling: O(number_of_priorities)" 2894.IX Item "Priority handling: O(number_of_priorities)"
2697.PD 2895.PD
2698Priorities are implemented by allocating some space for each 2896Priorities are implemented by allocating some space for each
2699priority. When doing priority-based operations, libev usually has to 2897priority. When doing priority-based operations, libev usually has to
2700linearly search all the priorities. 2898linearly search all the priorities, but starting/stopping and activating
2701.RE 2899watchers becomes O(1) w.r.t. prioritiy handling.
2702.RS 4 2900.SH "Win32 platform limitations and workarounds"
2901.IX Header "Win32 platform limitations and workarounds"
2902Win32 doesn't support any of the standards (e.g. \s-1POSIX\s0) that libev
2903requires, and its I/O model is fundamentally incompatible with the \s-1POSIX\s0
2904model. Libev still offers limited functionality on this platform in
2905the form of the \f(CW\*(C`EVBACKEND_SELECT\*(C'\fR backend, and only supports socket
2906descriptors. This only applies when using Win32 natively, not when using
2907e.g. cygwin.
2908.PP
2909There is no supported compilation method available on windows except
2910embedding it into other applications.
2911.PP
2912Due to the many, low, and arbitrary limits on the win32 platform and the
2913abysmal performance of winsockets, using a large number of sockets is not
2914recommended (and not reasonable). If your program needs to use more than
2915a hundred or so sockets, then likely it needs to use a totally different
2916implementation for windows, as libev offers the \s-1POSIX\s0 model, which cannot
2917be implemented efficiently on windows (microsoft monopoly games).
2918.IP "The winsocket select function" 4
2919.IX Item "The winsocket select function"
2920The winsocket \f(CW\*(C`select\*(C'\fR function doesn't follow \s-1POSIX\s0 in that it requires
2921socket \fIhandles\fR and not socket \fIfile descriptors\fR. This makes select
2922very inefficient, and also requires a mapping from file descriptors
2923to socket handles. See the discussion of the \f(CW\*(C`EV_SELECT_USE_FD_SET\*(C'\fR,
2924\&\f(CW\*(C`EV_SELECT_IS_WINSOCKET\*(C'\fR and \f(CW\*(C`EV_FD_TO_WIN32_HANDLE\*(C'\fR preprocessor
2925symbols for more info.
2926.Sp
2927The configuration for a \*(L"naked\*(R" win32 using the microsoft runtime
2928libraries and raw winsocket select is:
2929.Sp
2930.Vb 2
2931\& #define EV_USE_SELECT 1
2932\& #define EV_SELECT_IS_WINSOCKET 1 /* forces EV_SELECT_USE_FD_SET, too */
2933.Ve
2934.Sp
2935Note that winsockets handling of fd sets is O(n), so you can easily get a
2936complexity in the O(nA\*^X) range when using win32.
2937.IP "Limited number of file descriptors" 4
2938.IX Item "Limited number of file descriptors"
2939Windows has numerous arbitrary (and low) limits on things. Early versions
2940of winsocket's select only supported waiting for a max. of \f(CW64\fR handles
2941(probably owning to the fact that all windows kernels can only wait for
2942\&\f(CW64\fR things at the same time internally; microsoft recommends spawning a
2943chain of threads and wait for 63 handles and the previous thread in each).
2944.Sp
2945Newer versions support more handles, but you need to define \f(CW\*(C`FD_SETSIZE\*(C'\fR
2946to some high number (e.g. \f(CW2048\fR) before compiling the winsocket select
2947call (which might be in libev or elsewhere, for example, perl does its own
2948select emulation on windows).
2949.Sp
2950Another limit is the number of file descriptors in the microsoft runtime
2951libraries, which by default is \f(CW64\fR (there must be a hidden \fI64\fR fetish
2952or something like this inside microsoft). You can increase this by calling
2953\&\f(CW\*(C`_setmaxstdio\*(C'\fR, which can increase this limit to \f(CW2048\fR (another
2954arbitrary limit), but is broken in many versions of the microsoft runtime
2955libraries.
2956.Sp
2957This might get you to about \f(CW512\fR or \f(CW2048\fR sockets (depending on
2958windows version and/or the phase of the moon). To get more, you need to
2959wrap all I/O functions and provide your own fd management, but the cost of
2960calling select (O(nA\*^X)) will likely make this unworkable.
2703.SH "AUTHOR" 2961.SH "AUTHOR"
2704.IX Header "AUTHOR" 2962.IX Header "AUTHOR"
2705Marc Lehmann <libev@schmorp.de>. 2963Marc Lehmann <libev@schmorp.de>.
2964.SH "POD ERRORS"
2965.IX Header "POD ERRORS"
2966Hey! \fBThe above document had some coding errors, which are explained below:\fR
2967.IP "Around line 2686:" 4
2968.IX Item "Around line 2686:"
2969You forgot a '=back' before '=head2'

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines