summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root>2009-07-14 19:11:31 +0000
committerroot <root>2009-07-14 19:11:31 +0000
commit7564459ef21327361ff12bb9e2c793cb755b45cb (patch)
treedeba5cc18f71a17ac60befb90076888f5a3ec6e4
parent5b94be118b162aede882beb38d1439e5c7d5a0b7 (diff)
*** empty log message ***
-rw-r--r--configure.ac2
-rw-r--r--ev.h2
-rw-r--r--ev.pod16
3 files changed, 10 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac
index 37df519..3d0caa4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
AC_INIT
AC_CONFIG_SRCDIR([ev_epoll.c])
-AM_INIT_AUTOMAKE(libev,3.6)
+AM_INIT_AUTOMAKE(libev,3.7) dnl also update ev.h!
AC_CONFIG_HEADERS([config.h])
AM_MAINTAINER_MODE
diff --git a/ev.h b/ev.h
index 3d49eca..a40528c 100644
--- a/ev.h
+++ b/ev.h
@@ -163,7 +163,7 @@ struct ev_loop;
#endif
#define EV_VERSION_MAJOR 3
-#define EV_VERSION_MINOR 0
+#define EV_VERSION_MINOR 7
#ifndef EV_CB_DECLARE
# define EV_CB_DECLARE(type) void (*cb)(EV_P_ struct type *w, int revents);
diff --git a/ev.pod b/ev.pod
index f24164e..0e32388 100644
--- a/ev.pod
+++ b/ev.pod
@@ -4000,14 +4000,14 @@ protecting the loop data, respectively.
static void
l_release (EV_P)
{
- udat *u = ev_userdata (EV_A);
+ userdata *u = ev_userdata (EV_A);
pthread_mutex_unlock (&u->lock);
}
static void
l_acquire (EV_P)
{
- udat *u = ev_userdata (EV_A);
+ userdata *u = ev_userdata (EV_A);
pthread_mutex_lock (&u->lock);
}
@@ -4035,7 +4035,7 @@ have been called:
static void
l_invoke (EV_P)
{
- udat *u = ev_userdata (EV_A);
+ userdata *u = ev_userdata (EV_A);
wake_up_other_thread_in_some_magic_or_not_so_magic_way ();
@@ -4049,7 +4049,7 @@ thread to continue:
static void
real_invoke_pending (EV_P)
{
- udat *u = ev_userdata (EV_A);
+ userdata *u = ev_userdata (EV_A);
pthread_mutex_lock (&u->lock);
ev_invoke_pending (EV_A);
@@ -4061,7 +4061,7 @@ Whenever you want to start/stop a watcher or do other modifications to an
event loop, you will now have to lock:
ev_timer timeout_watcher;
- udat *u = ev_userdata (EV_A);
+ userdata *u = ev_userdata (EV_A);
ev_timer_init (&timeout_watcher, timeout_cb, 5.5, 0.);
@@ -4080,9 +4080,9 @@ watchers in the next event loop iteration.
Libev is very accommodating to coroutines ("cooperative threads"):
libev fully supports nesting calls to its functions from different
coroutines (e.g. you can call C<ev_loop> on the same loop from two
-different coroutines, and switch freely between both coroutines running the
-loop, as long as you don't confuse yourself). The only exception is that
-you must not do this from C<ev_periodic> reschedule callbacks.
+different coroutines, and switch freely between both coroutines running
+the loop, as long as you don't confuse yourself). The only exception is
+that you must not do this from C<ev_periodic> reschedule callbacks.
Care has been taken to ensure that libev does not keep local state inside
C<ev_loop>, and other calls do not usually allow for coroutine switches as