ENORMOUS long standing bug affecting the epoll polling system.
event_data is a union, not a structure !
diff --git a/include/epoll.h b/include/epoll.h
index af9841c..4b75383 100644
--- a/include/epoll.h
+++ b/include/epoll.h
@@ -23,7 +23,7 @@
 
 struct epoll_event {
     uint32_t events;
-    struct {
+    union {
 	void *ptr;
 	int fd;
 	uint32_t u32;