commit | 3c407cd544b8a015a71ee3623074536fd7f4c7b0 | [log] [tgz] |
---|---|---|
author | willy tarreau <willy@wtap.(none)> | Sun Mar 19 19:33:33 2006 +0100 |
committer | willy tarreau <willy@wtap.(none)> | Sun Mar 19 19:33:33 2006 +0100 |
tree | a1ed34c2af3f224555888f0c5cd20959f699443a | |
parent | 779dc897e7877e70b9e4fc4c6535218a931eef46 [diff] |
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;