summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes1
-rw-r--r--event.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/Changes b/Changes
index 6978056..149c004 100644
--- a/Changes
+++ b/Changes
@@ -3,6 +3,7 @@ Revision history for libev, a high-performance and full-featured event loop.
TODO: move some other examples to common idioms? combining watchers,
thread usage, coroutine switch?
+TODO: /dev/null epoll breakage, maybe catch EPERM?
4.03
- define EV_READ/EV_WRITE as macros in event.h, as some programs use
#ifdef to test for them.
diff --git a/event.c b/event.c
index c66db35..579423f 100644
--- a/event.c
+++ b/event.c
@@ -110,7 +110,7 @@ void event_base_free (struct event_base *base)
dLOOPbase;
#if EV_MULTIPLICITY
- if (!is_default_loop (loop))
+ if (!ev_is_default_loop (loop))
ev_loop_destroy (loop);
#endif
}