diff options
Diffstat (limited to 'src/os/event.h')
-rw-r--r-- | src/os/event.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/os/event.h b/src/os/event.h index 2470add1cf..ba84d8ffae 100644 --- a/src/os/event.h +++ b/src/os/event.h @@ -10,7 +10,9 @@ typedef enum { typedef struct { EventType type; - void *data; + union { + int signum; + } data; } Event; void event_init(void); |