FD_ISSET must return an int. this is the easiest way.
authorRich Felker <dalias@aerifal.cx>
Sat, 24 Sep 2011 02:24:33 +0000 (22:24 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 24 Sep 2011 02:24:33 +0000 (22:24 -0400)
commitc41a76f58ce0238172effe982f2cee7bbd2a60a4
treed5786c6de0e3dbc3929c81ae6221d8737918ceb4
parent1587224ed60aa38b7a26c5eaf692f1f1ab525afd
FD_ISSET must return an int. this is the easiest way.

casting to int would not be correct because high bits could be lost.
mapping the high bits down onto low bits would be costlier in the
common case where the result is just used in a conditional. changing
the type of the bit array elements to int would permute the order of
the bit array on 64-bit big endian systems, so that's not an option
either.
include/sys/select.h