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

Comparing libev/ev.pod (file contents):
Revision 1.60 by root, Wed Nov 28 18:29:30 2007 UTC vs.
Revision 1.66 by root, Mon Dec 3 13:41:25 2007 UTC

266C<LIBEV_FLAGS>. Otherwise (the default), this environment variable will 266C<LIBEV_FLAGS>. Otherwise (the default), this environment variable will
267override the flags completely if it is found in the environment. This is 267override the flags completely if it is found in the environment. This is
268useful to try out specific backends to test their performance, or to work 268useful to try out specific backends to test their performance, or to work
269around bugs. 269around bugs.
270 270
271=item C<EVFLAG_FORKCHECK>
272
273Instead of calling C<ev_default_fork> or C<ev_loop_fork> manually after
274a fork, you can also make libev check for a fork in each iteration by
275enabling this flag.
276
277This works by calling C<getpid ()> on every iteration of the loop,
278and thus this might slow down your event loop if you do a lot of loop
279iterations and little real work, but is usually not noticeable (on my
280Linux system for example, C<getpid> is actually a simple 5-insn sequence
281without a syscall and thus I<very> fast, but my Linux system also has
282C<pthread_atfork> which is even faster).
283
284The big advantage of this flag is that you can forget about fork (and
285forget about forgetting to tell libev about forking) when you use this
286flag.
287
288This flag setting cannot be overriden or specified in the C<LIBEV_FLAGS>
289environment variable.
290
271=item C<EVBACKEND_SELECT> (value 1, portable select backend) 291=item C<EVBACKEND_SELECT> (value 1, portable select backend)
272 292
273This is your standard select(2) backend. Not I<completely> standard, as 293This is your standard select(2) backend. Not I<completely> standard, as
274libev tries to roll its own fd_set with no limits on the number of fds, 294libev tries to roll its own fd_set with no limits on the number of fds,
275but if that fails, expect a fairly low limit on the number of fds when 295but if that fails, expect a fairly low limit on the number of fds when
409=item ev_loop_fork (loop) 429=item ev_loop_fork (loop)
410 430
411Like C<ev_default_fork>, but acts on an event loop created by 431Like C<ev_default_fork>, but acts on an event loop created by
412C<ev_loop_new>. Yes, you have to call this on every allocated event loop 432C<ev_loop_new>. Yes, you have to call this on every allocated event loop
413after fork, and how you do this is entirely your own problem. 433after fork, and how you do this is entirely your own problem.
434
435=item unsigned int ev_loop_count (loop)
436
437Returns the count of loop iterations for the loop, which is identical to
438the number of times libev did poll for new events. It starts at C<0> and
439happily wraps around with enough iterations.
440
441This value can sometimes be useful as a generation counter of sorts (it
442"ticks" the number of loop iterations), as it roughly corresponds with
443C<ev_prepare> and C<ev_check> calls.
414 444
415=item unsigned int ev_backend (loop) 445=item unsigned int ev_backend (loop)
416 446
417Returns one of the C<EVBACKEND_*> flags indicating the event backend in 447Returns one of the C<EVBACKEND_*> flags indicating the event backend in
418use. 448use.
916=item ev_timer_again (loop) 946=item ev_timer_again (loop)
917 947
918This will act as if the timer timed out and restart it again if it is 948This will act as if the timer timed out and restart it again if it is
919repeating. The exact semantics are: 949repeating. The exact semantics are:
920 950
951If the timer is pending, its pending status is cleared.
952
921If the timer is started but nonrepeating, stop it. 953If the timer is started but nonrepeating, stop it (as if it timed out).
922 954
923If the timer is repeating, either start it if necessary (with the repeat 955If the timer is repeating, either start it if necessary (with the
924value), or reset the running timer to the repeat value. 956C<repeat> value), or reset the running timer to the C<repeat> value.
925 957
926This sounds a bit complicated, but here is a useful and typical 958This sounds a bit complicated, but here is a useful and typical
927example: Imagine you have a tcp connection and you want a so-called 959example: Imagine you have a tcp connection and you want a so-called idle
928idle timeout, that is, you want to be called when there have been, 960timeout, that is, you want to be called when there have been, say, 60
929say, 60 seconds of inactivity on the socket. The easiest way to do 961seconds of inactivity on the socket. The easiest way to do this is to
930this is to configure an C<ev_timer> with C<after>=C<repeat>=C<60> and calling 962configure an C<ev_timer> with a C<repeat> value of C<60> and then call
931C<ev_timer_again> each time you successfully read or write some data. If 963C<ev_timer_again> each time you successfully read or write some data. If
932you go into an idle state where you do not expect data to travel on the 964you go into an idle state where you do not expect data to travel on the
933socket, you can stop the timer, and again will automatically restart it if 965socket, you can C<ev_timer_stop> the timer, and C<ev_timer_again> will
934need be. 966automatically restart it if need be.
935 967
936You can also ignore the C<after> value and C<ev_timer_start> altogether 968That means you can ignore the C<after> value and C<ev_timer_start>
937and only ever use the C<repeat> value: 969altogether and only ever use the C<repeat> value and C<ev_timer_again>:
938 970
939 ev_timer_init (timer, callback, 0., 5.); 971 ev_timer_init (timer, callback, 0., 5.);
940 ev_timer_again (loop, timer); 972 ev_timer_again (loop, timer);
941 ... 973 ...
942 timer->again = 17.; 974 timer->again = 17.;
943 ev_timer_again (loop, timer); 975 ev_timer_again (loop, timer);
944 ... 976 ...
945 timer->again = 10.; 977 timer->again = 10.;
946 ev_timer_again (loop, timer); 978 ev_timer_again (loop, timer);
947 979
948This is more efficient then stopping/starting the timer eahc time you want 980This is more slightly efficient then stopping/starting the timer each time
949to modify its timeout value. 981you want to modify its timeout value.
950 982
951=item ev_tstamp repeat [read-write] 983=item ev_tstamp repeat [read-write]
952 984
953The current C<repeat> value. Will be used each time the watcher times out 985The current C<repeat> value. Will be used each time the watcher times out
954or C<ev_timer_again> is called and determines the next timeout (if any), 986or C<ev_timer_again> is called and determines the next timeout (if any),
1435 1467
1436 // create io watchers for each fd and a timer before blocking 1468 // create io watchers for each fd and a timer before blocking
1437 static void 1469 static void
1438 adns_prepare_cb (ev_loop *loop, ev_prepare *w, int revents) 1470 adns_prepare_cb (ev_loop *loop, ev_prepare *w, int revents)
1439 { 1471 {
1440 int timeout = 3600000;truct pollfd fds [nfd]; 1472 int timeout = 3600000;
1473 struct pollfd fds [nfd];
1441 // actual code will need to loop here and realloc etc. 1474 // actual code will need to loop here and realloc etc.
1442 adns_beforepoll (ads, fds, &nfd, &timeout, timeval_from (ev_time ())); 1475 adns_beforepoll (ads, fds, &nfd, &timeout, timeval_from (ev_time ()));
1443 1476
1444 /* the callback is illegal, but won't be called as we stop during check */ 1477 /* the callback is illegal, but won't be called as we stop during check */
1445 ev_timer_init (&tw, 0, timeout * 1e-3); 1478 ev_timer_init (&tw, 0, timeout * 1e-3);
1826Similar to the other two macros, this gives you the value of the default 1859Similar to the other two macros, this gives you the value of the default
1827loop, if multiple loops are supported ("ev loop default"). 1860loop, if multiple loops are supported ("ev loop default").
1828 1861
1829=back 1862=back
1830 1863
1831Example: Declare and initialise a check watcher, working regardless of 1864Example: Declare and initialise a check watcher, utilising the above
1832wether multiple loops are supported or not. 1865macros so it will work regardless of wether multiple loops are supported
1866or not.
1833 1867
1834 static void 1868 static void
1835 check_cb (EV_P_ ev_timer *w, int revents) 1869 check_cb (EV_P_ ev_timer *w, int revents)
1836 { 1870 {
1837 ev_check_stop (EV_A_ w); 1871 ev_check_stop (EV_A_ w);
1839 1873
1840 ev_check check; 1874 ev_check check;
1841 ev_check_init (&check, check_cb); 1875 ev_check_init (&check, check_cb);
1842 ev_check_start (EV_DEFAULT_ &check); 1876 ev_check_start (EV_DEFAULT_ &check);
1843 ev_loop (EV_DEFAULT_ 0); 1877 ev_loop (EV_DEFAULT_ 0);
1844
1845 1878
1846=head1 EMBEDDING 1879=head1 EMBEDDING
1847 1880
1848Libev can (and often is) directly embedded into host 1881Libev can (and often is) directly embedded into host
1849applications. Examples of applications that embed it include the Deliantra 1882applications. Examples of applications that embed it include the Deliantra
1889 ev_vars.h 1922 ev_vars.h
1890 ev_wrap.h 1923 ev_wrap.h
1891 1924
1892 ev_win32.c required on win32 platforms only 1925 ev_win32.c required on win32 platforms only
1893 1926
1894 ev_select.c only when select backend is enabled (which is by default) 1927 ev_select.c only when select backend is enabled (which is enabled by default)
1895 ev_poll.c only when poll backend is enabled (disabled by default) 1928 ev_poll.c only when poll backend is enabled (disabled by default)
1896 ev_epoll.c only when the epoll backend is enabled (disabled by default) 1929 ev_epoll.c only when the epoll backend is enabled (disabled by default)
1897 ev_kqueue.c only when the kqueue backend is enabled (disabled by default) 1930 ev_kqueue.c only when the kqueue backend is enabled (disabled by default)
1898 ev_port.c only when the solaris port backend is enabled (disabled by default) 1931 ev_port.c only when the solaris port backend is enabled (disabled by default)
1899 1932
2141interface) and F<EV.xs> (implementation) files. Only the F<EV.xs> file 2174interface) and F<EV.xs> (implementation) files. Only the F<EV.xs> file
2142will be compiled. It is pretty complex because it provides its own header 2175will be compiled. It is pretty complex because it provides its own header
2143file. 2176file.
2144 2177
2145The usage in rxvt-unicode is simpler. It has a F<ev_cpp.h> header file 2178The usage in rxvt-unicode is simpler. It has a F<ev_cpp.h> header file
2146that everybody includes and which overrides some autoconf choices: 2179that everybody includes and which overrides some configure choices:
2147 2180
2181 #define EV_MINIMAL 1
2148 #define EV_USE_POLL 0 2182 #define EV_USE_POLL 0
2149 #define EV_MULTIPLICITY 0 2183 #define EV_MULTIPLICITY 0
2150 #define EV_PERIODICS 0 2184 #define EV_PERIODIC_ENABLE 0
2185 #define EV_STAT_ENABLE 0
2186 #define EV_FORK_ENABLE 0
2151 #define EV_CONFIG_H <config.h> 2187 #define EV_CONFIG_H <config.h>
2188 #define EV_MINPRI 0
2189 #define EV_MAXPRI 0
2152 2190
2153 #include "ev++.h" 2191 #include "ev++.h"
2154 2192
2155And a F<ev_cpp.C> implementation file that contains libev proper and is compiled: 2193And a F<ev_cpp.C> implementation file that contains libev proper and is compiled:
2156 2194

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines