ENORMOUS long standing bug affecting the epoll polling system.
event_data is a union, not a structure !
This commit is contained in:
parent
779dc897e7
commit
3c407cd544
|
@ -23,7 +23,7 @@
|
|||
|
||||
struct epoll_event {
|
||||
uint32_t events;
|
||||
struct {
|
||||
union {
|
||||
void *ptr;
|
||||
int fd;
|
||||
uint32_t u32;
|
||||
|
|
Loading…
Reference in New Issue