diff options
-rw-r--r-- | Symbols.ev | 4 | ||||
-rw-r--r-- | ev.pod | 2 | ||||
-rw-r--r-- | ev_vars.h | 4 |
3 files changed, 5 insertions, 5 deletions
@@ -2,6 +2,7 @@ ev_async_send ev_async_start ev_async_stop ev_backend +ev_break ev_check_start ev_check_stop ev_child_start @@ -28,7 +29,6 @@ ev_invoke_pending ev_io_start ev_io_stop ev_iteration -ev_loop ev_loop_destroy ev_loop_fork ev_loop_new @@ -44,6 +44,7 @@ ev_prepare_stop ev_recommended_backends ev_ref ev_resume +ev_run ev_set_allocator ev_set_invoke_pending_cb ev_set_io_collect_interval @@ -64,7 +65,6 @@ ev_timer_again ev_timer_remaining ev_timer_start ev_timer_stop -ev_unloop ev_unref ev_userdata ev_verify @@ -1161,7 +1161,7 @@ and call libev functions on it that are documented to work on active watchers. =item pending If a watcher is active and libev determines that an event it is interested -in has occured (such as a timer expiring), it will become pending. It will +in has occurred (such as a timer expiring), it will become pending. It will stay in this pending state until either it is stopped or its callback is about to be invoked, so it is not normally pending inside the watcher callback. @@ -48,7 +48,7 @@ VARx(ev_tstamp, timeout_blocktime) VARx(int, backend) VARx(int, activecnt) /* total number of active events ("refcount") */ -VARx(unsigned char, loop_done) /* signal by ev_unloop */ +VARx(EV_ATOMIC_T, loop_done) /* signal by ev_break */ VARx(int, backend_fd) VARx(ev_tstamp, backend_fudge) /* assumed typical timer resolution */ @@ -175,7 +175,7 @@ VARx(sigset_t, sigfd_set) #if EV_FEATURE_API || EV_GENWRAP VARx(unsigned int, loop_count) /* total number of loop iterations/blocks */ -VARx(unsigned int, loop_depth) /* #ev_loop enters - #ev_loop leaves */ +VARx(unsigned int, loop_depth) /* #ev_run enters - #ev_run leaves */ VARx(void *, userdata) VAR (release_cb, void (*release_cb)(EV_P)) |