mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-06 23:27:04 +02:00
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 {
|
struct epoll_event {
|
||||||
uint32_t events;
|
uint32_t events;
|
||||||
struct {
|
union {
|
||||||
void *ptr;
|
void *ptr;
|
||||||
int fd;
|
int fd;
|
||||||
uint32_t u32;
|
uint32_t u32;
|
||||||
|
Loading…
Reference in New Issue
Block a user