--- libev/ev.pod 2007/11/23 08:36:35 1.32 +++ libev/ev.pod 2007/11/23 15:26:08 1.33 @@ -91,7 +91,7 @@ returned by C, as for example kqueue is broken on most BSDs and will not be autodetected unless you explicitly request it (assuming you know what you are doing). This is the set of backends that -C will probe for. +libev will probe for if you specify no backends explicitly. =item ev_set_allocator (void *(*cb)(void *ptr, long size)) @@ -143,9 +143,9 @@ function. The flags argument can be used to specify special behaviour or specific -backends to use, and is usually specified as C<0> (or EVFLAG_AUTO). +backends to use, and is usually specified as C<0> (or C). -It supports the following flags: +The following flags are supported: =over 4 @@ -200,8 +200,9 @@ Kqueue deserves special mention, as at the time of this writing, it was broken on all BSDs except NetBSD (usually it doesn't work with anything but sockets and pipes, except on Darwin, where of course its -completely useless). For this reason its not being "autodetected" unless -you explicitly specify the flags (i.e. you don't use EVFLAG_AUTO). +completely useless). For this reason its not being "autodetected" +unless you explicitly specify it explicitly in the flags (i.e. using +C). It scales in the same way as the epoll backend, but the interface to the kernel is more efficient (which says nothing about its actual speed, of @@ -235,6 +236,22 @@ specified, most compiled-in backend will be tried, usually in reverse order of their flag values :) +The most typical usage is like this: + + if (!ev_default_loop (0)) + fatal ("could not initialise libev, bad $LIBEV_FLAGS in environment?"); + +Restrict libev to the select and poll backends, and do not allow +environment settings to be taken into account: + + ev_default_loop (EVBACKEND_POLL | EVBACKEND_SELECT | EVFLAG_NOENV); + +Use whatever libev has to offer, but make sure that kqueue is used if +available (warning, breaks stuff, best use only with your own private +event loop and only if you know the OS supports your types of fds): + + ev_default_loop (ev_recommended_backends () | EVBACKEND_KQUEUE); + =item struct ev_loop *ev_loop_new (unsigned int flags) Similar to C, but always creates a new event loop that is @@ -299,8 +316,8 @@ after you initialised all your watchers and you want to start handling events. -If the flags argument is specified as 0, it will not return until either -no event watchers are active anymore or C was called. +If the flags argument is specified as C<0>, it will not return until +either no event watchers are active anymore or C was called. A flags value of C will look for new events, will handle those events and any outstanding ones, but will not block your process in @@ -309,29 +326,31 @@ A flags value of C will look for new events (waiting if neccessary) and will handle those and any outstanding ones. It will block your process until at least one new event arrives, and will return after -one iteration of the loop. - -This flags value could be used to implement alternative looping -constructs, but the C and C watchers provide a better and -more generic mechanism. - -Here are the gory details of what ev_loop does: - - 1. If there are no active watchers (reference count is zero), return. - 2. Queue and immediately call all prepare watchers. - 3. If we have been forked, recreate the kernel state. - 4. Update the kernel state with all outstanding changes. - 5. Update the "event loop time". - 6. Calculate for how long to block. - 7. Block the process, waiting for events. - 8. Update the "event loop time" and do time jump handling. - 9. Queue all outstanding timers. - 10. Queue all outstanding periodics. - 11. If no events are pending now, queue all idle watchers. - 12. Queue all check watchers. - 13. Call all queued watchers in reverse order (i.e. check watchers first). - 14. If ev_unloop has been called or EVLOOP_ONESHOT or EVLOOP_NONBLOCK - was used, return, otherwise continue with step #1. +one iteration of the loop. This is useful if you are waiting for some +external event in conjunction with something not expressible using other +libev watchers. However, a pair of C/C watchers is +usually a better approach for this kind of thing. + +Here are the gory details of what C does: + + * If there are no active watchers (reference count is zero), return. + - Queue prepare watchers and then call all outstanding watchers. + - If we have been forked, recreate the kernel state. + - Update the kernel state with all outstanding changes. + - Update the "event loop time". + - Calculate for how long to block. + - Block the process, waiting for any events. + - Queue all outstanding I/O (fd) events. + - Update the "event loop time" and do time jump handling. + - Queue all outstanding timers. + - Queue all outstanding periodics. + - If no events are pending now, queue all idle watchers. + - Queue all check watchers. + - Call all queued watchers in reverse order (i.e. check watchers first). + Signals and child watchers are implemented as I/O watchers, and will + be handled here by queueing them when their watcher gets executed. + - If ev_unloop has been called or EVLOOP_ONESHOT or EVLOOP_NONBLOCK + were used, return, otherwise continue with step *. =item ev_unloop (loop, how)