summaryrefslogtreecommitdiff
path: root/event.h
diff options
context:
space:
mode:
Diffstat (limited to 'event.h')
-rw-r--r--event.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/event.h b/event.h
index 18aa3a6..03506ad 100644
--- a/event.h
+++ b/event.h
@@ -38,11 +38,15 @@ extern "C" {
#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;