summaryrefslogtreecommitdiff
path: root/ev.3
diff options
context:
space:
mode:
authorroot <root>2007-11-29 20:05:59 +0000
committerroot <root>2007-11-29 20:05:59 +0000
commit2177c9a4959519c5388973d0d91771bd8cf50d4e (patch)
tree4e8e56d7c65c226df27474db751c1d55a0ed6291 /ev.3
parent8e89c9383f4e3beeb586b448a9aa2f86b23376f3 (diff)
*** empty log message ***
Diffstat (limited to 'ev.3')
-rw-r--r--ev.318
1 files changed, 12 insertions, 6 deletions
diff --git a/ev.3 b/ev.3
index cf2a42d..7c9695c 100644
--- a/ev.3
+++ b/ev.3
@@ -1999,8 +1999,9 @@ suitable for use with \f(CW\*(C`EV_A\*(C'\fR.
Similar to the other two macros, this gives you the value of the default
loop, if multiple loops are supported (\*(L"ev loop default\*(R").
.PP
-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.
.PP
.Vb 5
\& static void
@@ -2073,7 +2074,7 @@ in your include path (e.g. in libev/ when using \-Ilibev):
.Ve
.PP
.Vb 5
-\& 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)
@@ -2310,13 +2311,18 @@ will be compiled. It is pretty complex because it provides its own header
file.
.Sp
The usage in rxvt-unicode is simpler. It has a \fIev_cpp.h\fR header file
-that everybody includes and which overrides some autoconf choices:
+that everybody includes and which overrides some configure choices:
.Sp
-.Vb 4
+.Vb 9
+\& #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
.Ve
.Sp
.Vb 1