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

Comparing libev/event.h (file contents):
Revision 1.5 by root, Fri Nov 2 22:03:00 2007 UTC vs.
Revision 1.12 by root, Thu Nov 8 21:14:15 2007 UTC

29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */ 30 */
31#ifndef _EVENT_H_ 31#ifndef _EVENT_H_
32#define _EVENT_H_ 32#define _EVENT_H_
33 33
34#include <ev.h>
35
34#ifdef __cplusplus 36#ifdef __cplusplus
35extern "C" { 37extern "C" {
36#endif 38#endif
37
38#include "ev.h"
39 39
40struct event 40struct event
41{ 41{
42 /* libev watchers we map onto */ 42 /* libev watchers we map onto */
43 union { 43 union {
102void event_set (struct event *ev, int fd, short events, void (*cb)(int, short, void *), void *arg); 102void event_set (struct event *ev, int fd, short events, void (*cb)(int, short, void *), void *arg);
103int event_once (int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv); 103int event_once (int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv);
104 104
105int event_add (struct event *ev, struct timeval *tv); 105int event_add (struct event *ev, struct timeval *tv);
106int event_del (struct event *ev); 106int event_del (struct event *ev);
107void event_active (struct event *ev, int res, short ncalls); /* ncalls is being ignored */
107 108
108int event_pending (struct event *ev, short, struct timeval *tv); 109int event_pending (struct event *ev, short, struct timeval *tv);
109 110
110int event_priority_init (int npri); 111int event_priority_init (int npri);
111int event_priority_set (struct event *ev, int pri); 112int event_priority_set (struct event *ev, int pri);
117int event_base_loopexit (struct event_base *base, struct timeval *tv); 118int event_base_loopexit (struct event_base *base, struct timeval *tv);
118int event_base_dispatch (struct event_base *base); 119int event_base_dispatch (struct event_base *base);
119int event_base_once (struct event_base *base, int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv); 120int event_base_once (struct event_base *base, int fd, short events, void (*cb)(int, short, void *), void *arg, struct timeval *tv);
120int event_base_priority_init (struct event_base *base, int fd); 121int event_base_priority_init (struct event_base *base, int fd);
121 122
123#ifndef EV_STANDALONE
124# include "event_compat.h"
122#endif 125#endif
123 126
127#ifdef __cplusplus
128}
129#endif
130
131#endif
132

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines