summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes2
-rw-r--r--ev.c10
2 files changed, 6 insertions, 6 deletions
diff --git a/Changes b/Changes
index 6e095aa..bd3b8e1 100644
--- a/Changes
+++ b/Changes
@@ -2,7 +2,6 @@ Revision history for libev, a high-performance and full-featured event loop.
TODO: ABI??? API????? Changes???
TODO: win32 write() to socket for signal handling
-TODO: ev_loop_xx => ev_xx
- ev_embed_stop did not correctly stop the watcher (very good
testcase by Vladimir Timofeev).
- applied win32 fixes by Michael Lenaghan (also James Mansion).
@@ -22,6 +21,7 @@ TODO: ev_loop_xx => ev_xx
- update libev.m4 HAVE_CLOCK_SYSCALL test for newwer glibcs.
- add section on accept() problems to the manpage.
- rename EV_TIMEOUT to EV_TIMER.
+ - remove loop_ name component from ev_loop_count/depth/verify.
- switch to two-digit minor version.
3.9 Thu Dec 31 07:59:59 CET 2009
diff --git a/ev.c b/ev.c
index 3b88d62..727b7bc 100644
--- a/ev.c
+++ b/ev.c
@@ -437,7 +437,7 @@ struct signalfd_siginfo
/**/
#if EV_VERIFY >= 3
-# define EV_FREQUENT_CHECK ev_loop_verify (EV_A)
+# define EV_FREQUENT_CHECK ev_verify (EV_A)
#else
# define EV_FREQUENT_CHECK do { } while (0)
#endif
@@ -1533,13 +1533,13 @@ ev_backend (EV_P)
#if EV_FEATURE_API
unsigned int
-ev_loop_count (EV_P)
+ev_iteration (EV_P)
{
return loop_count;
}
unsigned int
-ev_loop_depth (EV_P)
+ev_depth (EV_P)
{
return loop_depth;
}
@@ -1870,7 +1870,7 @@ array_verify (EV_P_ W *ws, int cnt)
#if EV_FEATURE_API
void
-ev_loop_verify (EV_P)
+ev_verify (EV_P)
{
#if EV_VERIFY
int i;
@@ -2282,7 +2282,7 @@ ev_loop (EV_P_ int flags)
do
{
#if EV_VERIFY >= 2
- ev_loop_verify (EV_A);
+ ev_verify (EV_A);
#endif
#ifndef _WIN32