]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MEDIUM: poll: do not use FD_* macros anymore
authorWilly Tarreau <w@1wt.eu>
Sun, 31 Mar 2013 12:06:57 +0000 (14:06 +0200)
committerWilly Tarreau <w@1wt.eu>
Sun, 31 Mar 2013 13:01:01 +0000 (15:01 +0200)
commit80da05a4cfb881663dc1f38a94d613f37e54552a
tree29f4be94528443c96ad9cfe2071ade6cecf57160
parentb67fdc4cd8bde202f2805d98683ddab929469a05
MEDIUM: poll: do not use FD_* macros anymore

Some recent glibc updates have added controls on FD_SET/FD_CLR/FD_ISSET
that crash the program if it tries to use a file descriptor larger than
FD_SETSIZE.

Do not rely on FD_* macros anymore and replace them with bit fields.
src/ev_poll.c