#include "ev.h"
struct event
- {
- struct ev_io io;
+{
+ /* lib watchers we map to */
+ union {
+ struct ev_io io;
+ struct ev_signal sig;
+ } iosig;
struct ev_timer to;
- struct ev_signal sig;
+ /* compatibility slots */
struct event_base *ev_base;
void (*ev_callback)(int, short, void *arg);
void *ev_arg;
int event_add (struct event *ev, struct timeval *tv);
int event_del (struct event *ev);
-void event_active (struct event *ev, int fd, short events);
int event_pending (struct event *ev, short, struct timeval *tv);