diff options
Diffstat (limited to 'src/os/event.h')
-rw-r--r-- | src/os/event.h | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/src/os/event.h b/src/os/event.h index ba84d8ffae..7aee717213 100644 --- a/src/os/event.h +++ b/src/os/event.h @@ -4,16 +4,8 @@ #include <stdint.h> #include <stdbool.h> -typedef enum { - kEventSignal -} EventType; - -typedef struct { - EventType type; - union { - int signum; - } data; -} Event; +#include "os/event_defs.h" +#include "os/job_defs.h" void event_init(void); bool event_poll(int32_t ms); |