commit | 80da05a4cfb881663dc1f38a94d613f37e54552a | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sun Mar 31 14:06:57 2013 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Sun Mar 31 15:01:01 2013 +0200 |
tree | 29f4be94528443c96ad9cfe2071ade6cecf57160 | |
parent | b67fdc4cd8bde202f2805d98683ddab929469a05 [diff] |
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.