ENORMOUS long standing bug affecting the epoll polling system.

event_data is a union, not a structure !
This commit is contained in:
willy tarreau 2006-03-19 19:33:33 +01:00
parent 779dc897e7
commit 3c407cd544
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
struct epoll_event {
uint32_t events;
struct {
union {
void *ptr;
int fd;
uint32_t u32;