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

Comparing libev/ev.pod (file contents):
Revision 1.59 by root, Wed Nov 28 17:32:24 2007 UTC vs.
Revision 1.63 by root, Thu Nov 29 20:05:59 2007 UTC

265or setgid) then libev will I<not> look at the environment variable 265or setgid) then libev will I<not> look at the environment variable
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
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 noticable (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.
270 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,
916=item ev_timer_again (loop) 936=item ev_timer_again (loop)
917 937
918This will act as if the timer timed out and restart it again if it is 938This will act as if the timer timed out and restart it again if it is
919repeating. The exact semantics are: 939repeating. The exact semantics are:
920 940
941If the timer is pending, its pending status is cleared.
942
921If the timer is started but nonrepeating, stop it. 943If the timer is started but nonrepeating, stop it (as if it timed out).
922 944
923If the timer is repeating, either start it if necessary (with the repeat 945If the timer is repeating, either start it if necessary (with the
924value), or reset the running timer to the repeat value. 946C<repeat> value), or reset the running timer to the C<repeat> value.
925 947
926This sounds a bit complicated, but here is a useful and typical 948This sounds a bit complicated, but here is a useful and typical
927example: Imagine you have a tcp connection and you want a so-called 949example: 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, 950timeout, 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 951seconds 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 952configure 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 953C<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 954you 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 955socket, you can C<ev_timer_stop> the timer, and C<ev_timer_again> will
934need be. 956automatically restart it if need be.
935 957
936You can also ignore the C<after> value and C<ev_timer_start> altogether 958That means you can ignore the C<after> value and C<ev_timer_start>
937and only ever use the C<repeat> value: 959altogether and only ever use the C<repeat> value and C<ev_timer_again>:
938 960
939 ev_timer_init (timer, callback, 0., 5.); 961 ev_timer_init (timer, callback, 0., 5.);
940 ev_timer_again (loop, timer); 962 ev_timer_again (loop, timer);
941 ... 963 ...
942 timer->again = 17.; 964 timer->again = 17.;
943 ev_timer_again (loop, timer); 965 ev_timer_again (loop, timer);
944 ... 966 ...
945 timer->again = 10.; 967 timer->again = 10.;
946 ev_timer_again (loop, timer); 968 ev_timer_again (loop, timer);
947 969
948This is more efficient then stopping/starting the timer eahc time you want 970This is more slightly efficient then stopping/starting the timer each time
949to modify its timeout value. 971you want to modify its timeout value.
950 972
951=item ev_tstamp repeat [read-write] 973=item ev_tstamp repeat [read-write]
952 974
953The current C<repeat> value. Will be used each time the watcher times out 975The 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), 976or C<ev_timer_again> is called and determines the next timeout (if any),
1222The path does not need to exist: changing from "path exists" to "path does 1244The path does not need to exist: changing from "path exists" to "path does
1223not exist" is a status change like any other. The condition "path does 1245not exist" is a status change like any other. The condition "path does
1224not exist" is signified by the C<st_nlink> field being zero (which is 1246not exist" is signified by the C<st_nlink> field being zero (which is
1225otherwise always forced to be at least one) and all the other fields of 1247otherwise always forced to be at least one) and all the other fields of
1226the stat buffer having unspecified contents. 1248the stat buffer having unspecified contents.
1249
1250The path I<should> be absolute and I<must not> end in a slash. If it is
1251relative and your working directory changes, the behaviour is undefined.
1227 1252
1228Since there is no standard to do this, the portable implementation simply 1253Since there is no standard to do this, the portable implementation simply
1229calls C<stat (2)> regularly on the path to see if it changed somehow. You 1254calls C<stat (2)> regularly on the path to see if it changed somehow. You
1230can specify a recommended polling interval for this case. If you specify 1255can specify a recommended polling interval for this case. If you specify
1231a polling interval of C<0> (highly recommended!) then a I<suitable, 1256a polling interval of C<0> (highly recommended!) then a I<suitable,
1823Similar to the other two macros, this gives you the value of the default 1848Similar to the other two macros, this gives you the value of the default
1824loop, if multiple loops are supported ("ev loop default"). 1849loop, if multiple loops are supported ("ev loop default").
1825 1850
1826=back 1851=back
1827 1852
1828Example: Declare and initialise a check watcher, working regardless of 1853Example: Declare and initialise a check watcher, utilising the above
1829wether multiple loops are supported or not. 1854macros so it will work regardless of wether multiple loops are supported
1855or not.
1830 1856
1831 static void 1857 static void
1832 check_cb (EV_P_ ev_timer *w, int revents) 1858 check_cb (EV_P_ ev_timer *w, int revents)
1833 { 1859 {
1834 ev_check_stop (EV_A_ w); 1860 ev_check_stop (EV_A_ w);
1836 1862
1837 ev_check check; 1863 ev_check check;
1838 ev_check_init (&check, check_cb); 1864 ev_check_init (&check, check_cb);
1839 ev_check_start (EV_DEFAULT_ &check); 1865 ev_check_start (EV_DEFAULT_ &check);
1840 ev_loop (EV_DEFAULT_ 0); 1866 ev_loop (EV_DEFAULT_ 0);
1841
1842 1867
1843=head1 EMBEDDING 1868=head1 EMBEDDING
1844 1869
1845Libev can (and often is) directly embedded into host 1870Libev can (and often is) directly embedded into host
1846applications. Examples of applications that embed it include the Deliantra 1871applications. Examples of applications that embed it include the Deliantra
1886 ev_vars.h 1911 ev_vars.h
1887 ev_wrap.h 1912 ev_wrap.h
1888 1913
1889 ev_win32.c required on win32 platforms only 1914 ev_win32.c required on win32 platforms only
1890 1915
1891 ev_select.c only when select backend is enabled (which is by default) 1916 ev_select.c only when select backend is enabled (which is enabled by default)
1892 ev_poll.c only when poll backend is enabled (disabled by default) 1917 ev_poll.c only when poll backend is enabled (disabled by default)
1893 ev_epoll.c only when the epoll backend is enabled (disabled by default) 1918 ev_epoll.c only when the epoll backend is enabled (disabled by default)
1894 ev_kqueue.c only when the kqueue backend is enabled (disabled by default) 1919 ev_kqueue.c only when the kqueue backend is enabled (disabled by default)
1895 ev_port.c only when the solaris port backend is enabled (disabled by default) 1920 ev_port.c only when the solaris port backend is enabled (disabled by default)
1896 1921
2138interface) and F<EV.xs> (implementation) files. Only the F<EV.xs> file 2163interface) and F<EV.xs> (implementation) files. Only the F<EV.xs> file
2139will be compiled. It is pretty complex because it provides its own header 2164will be compiled. It is pretty complex because it provides its own header
2140file. 2165file.
2141 2166
2142The usage in rxvt-unicode is simpler. It has a F<ev_cpp.h> header file 2167The usage in rxvt-unicode is simpler. It has a F<ev_cpp.h> header file
2143that everybody includes and which overrides some autoconf choices: 2168that everybody includes and which overrides some configure choices:
2144 2169
2170 #define EV_MINIMAL 1
2145 #define EV_USE_POLL 0 2171 #define EV_USE_POLL 0
2146 #define EV_MULTIPLICITY 0 2172 #define EV_MULTIPLICITY 0
2147 #define EV_PERIODICS 0 2173 #define EV_PERIODIC_ENABLE 0
2174 #define EV_STAT_ENABLE 0
2175 #define EV_FORK_ENABLE 0
2148 #define EV_CONFIG_H <config.h> 2176 #define EV_CONFIG_H <config.h>
2177 #define EV_MINPRI 0
2178 #define EV_MAXPRI 0
2149 2179
2150 #include "ev++.h" 2180 #include "ev++.h"
2151 2181
2152And a F<ev_cpp.C> implementation file that contains libev proper and is compiled: 2182And a F<ev_cpp.C> implementation file that contains libev proper and is compiled:
2153 2183

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines