ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libev/ev.h
(Generate patch)

Comparing libev/ev.h (file contents):
Revision 1.103 by root, Thu Jun 19 06:58:34 2008 UTC vs.
Revision 1.108 by root, Tue Jan 6 19:57:32 2009 UTC

91 91
92#if EV_STAT_ENABLE 92#if EV_STAT_ENABLE
93# ifdef _WIN32 93# ifdef _WIN32
94# include <time.h> 94# include <time.h>
95# include <sys/types.h> 95# include <sys/types.h>
96# include <stdio.h>
97# endif 96# endif
98# include <sys/stat.h> 97# include <sys/stat.h>
99#endif 98#endif
100 99
101/* support multiple event loops? */ 100/* support multiple event loops? */
166# define EV_CB_INVOKE(watcher,revents) (watcher)->cb (EV_A_ (watcher), (revents)) 165# define EV_CB_INVOKE(watcher,revents) (watcher)->cb (EV_A_ (watcher), (revents))
167#endif 166#endif
168 167
169/* 168/*
170 * struct member types: 169 * struct member types:
171 * private: you can look at them, but not change them, and they might not mean anything to you. 170 * private: you may look at them, but not change them,
171 * and they might not mean anything to you.
172 * ro: can be read anytime, but only changed when the watcher isn't active 172 * ro: can be read anytime, but only changed when the watcher isn't active.
173 * rw: can be read and modified anytime, even when the watcher is active 173 * rw: can be read and modified anytime, even when the watcher is active.
174 * 174 *
175 * some internal details that might be helpful for debugging: 175 * some internal details that might be helpful for debugging:
176 * 176 *
177 * active is either 0, which means the watcher is not active, 177 * active is either 0, which means the watcher is not active,
178 * or the array index of the watcher (periodics, timers) 178 * or the array index of the watcher (periodics, timers)
179 * or the array index + 1 (most other watchers) 179 * or the array index + 1 (most other watchers)
180 * or simply 1 for watchers that aren't in some array. 180 * or simply 1 for watchers that aren't in some array.
181 * pending is either 0, in which case the watcher isn't, 181 * pending is either 0, in which case the watcher isn't,
182 * or the array index + 1 in the pendings array. 182 * or the array index + 1 in the pendings array.
183 */ 183 */
184 184
185/* shared by all watchers */ 185/* shared by all watchers */
186#define EV_WATCHER(type) \ 186#define EV_WATCHER(type) \
187 int active; /* private */ \ 187 int active; /* private */ \
336 ev_prepare prepare; /* private */ 336 ev_prepare prepare; /* private */
337 ev_check check; /* unused */ 337 ev_check check; /* unused */
338 ev_timer timer; /* unused */ 338 ev_timer timer; /* unused */
339 ev_periodic periodic; /* unused */ 339 ev_periodic periodic; /* unused */
340 ev_idle idle; /* unused */ 340 ev_idle idle; /* unused */
341 ev_fork fork; /* unused */ 341 ev_fork fork; /* private */
342} ev_embed; 342} ev_embed;
343#endif 343#endif
344 344
345#if EV_ASYNC_ENABLE 345#if EV_ASYNC_ENABLE
346/* invoked when somebody calls ev_async_send on the watcher */ 346/* invoked when somebody calls ev_async_send on the watcher */
455void ev_loop_destroy (EV_P); 455void ev_loop_destroy (EV_P);
456void ev_loop_fork (EV_P); 456void ev_loop_fork (EV_P);
457void ev_loop_verify (EV_P); 457void ev_loop_verify (EV_P);
458 458
459ev_tstamp ev_now (EV_P); /* time w.r.t. timers and the eventloop, updated after each poll */ 459ev_tstamp ev_now (EV_P); /* time w.r.t. timers and the eventloop, updated after each poll */
460void ev_now_update (EV_P);
460 461
461#else 462#else
462 463
463int ev_default_loop (unsigned int flags); /* returns true when successful */ 464int ev_default_loop (unsigned int flags); /* returns true when successful */
464 465
513 * should not keep ev_loop from running, unref() after starting, and ref() before stopping. 514 * should not keep ev_loop from running, unref() after starting, and ref() before stopping.
514 */ 515 */
515void ev_ref (EV_P); 516void ev_ref (EV_P);
516void ev_unref (EV_P); 517void ev_unref (EV_P);
517 518
518/* convinience function, wait for a single event, without registering an event watcher */ 519/* convenience function, wait for a single event, without registering an event watcher */
519/* if timeout is < 0, do wait indefinitely */ 520/* if timeout is < 0, do wait indefinitely */
520void ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg); 521void ev_once (EV_P_ int fd, int events, ev_tstamp timeout, void (*cb)(int revents, void *arg), void *arg);
521#endif 522#endif
522 523
523/* these may evaluate ev multiple times, and the other arguments at most once */ 524/* these may evaluate ev multiple times, and the other arguments at most once */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines