diff options
author | root <root> | 2007-11-02 13:08:51 +0000 |
---|---|---|
committer | root <root> | 2007-11-02 13:08:51 +0000 |
commit | 61de97f9771545a844c541206449ea719aa26d21 (patch) | |
tree | 0e53024d7aeed124bb25d6b82729b6a732931c88 /event.h | |
parent | 736c339cd39bb22dacbf56274203876871f63196 (diff) |
improve event compatibility, make watchers much smaller by union'ising io and sig watchers
Diffstat (limited to 'event.h')
-rw-r--r-- | event.h | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -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; |