X-Git-Url: https://git.llucax.com/software/libev.git/blobdiff_plain/01a7af5110dcd6e711dd27c0fa7fa68c23380186..0a7b0ac074d9987c6fa23ab20be4842e4514c7b9:/ev.html diff --git a/ev.html b/ev.html index 4c6249e..d95bffd 100644 --- a/ev.html +++ b/ev.html @@ -6,7 +6,7 @@ - +
@@ -232,13 +232,14 @@ might be supported on the current system, you would need to look at recommended ones.See the description of ev_embed
watchers for more info.
Sets the allocation function to use (the prototype and semantics are -identical to the realloc C function). It is used to allocate and free -memory (no surprises here). If it returns zero when memory needs to be -allocated, the library might abort or take some potentially destructive -action. The default is your system realloc function.
+Sets the allocation function to use (the prototype is similar - the +semantics is identical - to the realloc C function). It is used to +allocate and free memory (no surprises here). If it returns zero when +memory needs to be allocated, the library might abort or take some +potentially destructive action. The default is your system realloc +function.
You could override this function in high-availability programs to, say, free some memory if it cannot allocate memory, to use a special allocator, or even to sleep a while and retry until some memory is available.
@@ -326,6 +327,23 @@ or setgid) then libev will not look at the environment variable override the flags completely if it is found in the environment. This is useful to try out specific backends to test their performance, or to work around bugs. +EVFLAG_FORKCHECK
Instead of calling ev_default_fork
or ev_loop_fork
manually after
+a fork, you can also make libev check for a fork in each iteration by
+enabling this flag.
This works by calling getpid ()
on every iteration of the loop,
+and thus this might slow down your event loop if you do a lot of loop
+iterations and little real work, but is usually not noticable (on my
+Linux system for example, getpid
is actually a simple 5-insn sequence
+without a syscall and thus very fast, but my Linux system also has
+pthread_atfork
which is even faster).
The big advantage of this flag is that you can forget about fork (and +forget about forgetting to tell libev about forking) when you use this +flag.
+This flag setting cannot be overriden or specified in the LIBEV_FLAGS
+environment variable.
EVBACKEND_SELECT
(value 1, portable select backend)This will act as if the timer timed out and restart it again if it is repeating. The exact semantics are:
-If the timer is started but nonrepeating, stop it.
-If the timer is repeating, either start it if necessary (with the repeat -value), or reset the running timer to the repeat value.
+If the timer is pending, its pending status is cleared.
+If the timer is started but nonrepeating, stop it (as if it timed out).
+If the timer is repeating, either start it if necessary (with the
+repeat
value), or reset the running timer to the repeat
value.
This sounds a bit complicated, but here is a useful and typical
-example: Imagine you have a tcp connection and you want a so-called
-idle timeout, that is, you want to be called when there have been,
-say, 60 seconds of inactivity on the socket. The easiest way to do
-this is to configure an ev_timer
with after
=repeat
=60
and calling
+example: Imagine you have a tcp connection and you want a so-called idle
+timeout, that is, you want to be called when there have been, say, 60
+seconds of inactivity on the socket. The easiest way to do this is to
+configure an ev_timer
with a repeat
value of 60
and then call
ev_timer_again
each time you successfully read or write some data. If
you go into an idle state where you do not expect data to travel on the
-socket, you can stop the timer, and again will automatically restart it if
-need be.
You can also ignore the after
value and ev_timer_start
altogether
-and only ever use the repeat
value:
ev_timer_stop
the timer, and ev_timer_again
will
+automatically restart it if need be.
+ That means you can ignore the after
value and ev_timer_start
+altogether and only ever use the repeat
value and ev_timer_again
:
ev_timer_init (timer, callback, 0., 5.);
ev_timer_again (loop, timer);
...
@@ -977,8 +996,8 @@ and only ever use the repeat
value:
ev_timer_again (loop, timer);
- This is more efficient then stopping/starting the timer eahc time you want -to modify its timeout value.
+This is more slightly efficient then stopping/starting the timer each time +you want to modify its timeout value.
st_nlink
field being zero (which is
otherwise always forced to be at least one) and all the other fields of
the stat buffer having unspecified contents.
+The path should be absolute and must not end in a slash. If it is +relative and your working directory changes, the behaviour is undefined.
Since there is no standard to do this, the portable implementation simply
calls stat (2)
regularly on the path to see if it changed somehow. You
can specify a recommended polling interval for this case. If you specify
@@ -1820,8 +1841,9 @@ suitable for use with EV_A
.
Example: Declare and initialise a check watcher, working regardless of -wether multiple loops are supported or not.
+Example: Declare and initialise a check watcher, utilising the above +macros so it will work regardless of wether multiple loops are supported +or not.
static void check_cb (EV_P_ ev_timer *w, int revents) { @@ -1833,9 +1855,6 @@ wether multiple loops are supported or not. ev_check_start (EV_DEFAULT_ &check); ev_loop (EV_DEFAULT_ 0); - - -@@ -1886,7 +1905,7 @@ in your include path (e.g. in libev/ when using -Ilibev): ev_win32.c required on win32 platforms only - ev_select.c only when select backend is enabled (which is by default) + ev_select.c only when select backend is enabled (which is enabled by default) ev_poll.c only when poll backend is enabled (disabled by default) ev_epoll.c only when the epoll backend is enabled (disabled by default) ev_kqueue.c only when the kqueue backend is enabled (disabled by default) @@ -2138,11 +2157,16 @@ interface) and EV.xs (implementation) files. Only the EV.xs will be compiled. It is pretty complex because it provides its own header file.
The usage in rxvt-unicode is simpler. It has a ev_cpp.h header file -that everybody includes and which overrides some autoconf choices:
-#define EV_USE_POLL 0 +that everybody includes and which overrides some configure choices: +#define EV_MINIMAL 1 + #define EV_USE_POLL 0 #define EV_MULTIPLICITY 0 - #define EV_PERIODICS 0 + #define EV_PERIODIC_ENABLE 0 + #define EV_STAT_ENABLE 0 + #define EV_FORK_ENABLE 0 #define EV_CONFIG_H <config.h> + #define EV_MINPRI 0 + #define EV_MAXPRI 0 #include "ev++.h"