X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pp_sys.c;h=85826cca73fff8c892e155473f457df040246b78;hb=8f1f23e8b15dc90b39e5be39711437f27f72b526;hp=a35a2060b9182ec8f4400a57ed3f079bcea32aee;hpb=e3d0d1b96b2c9ea39a8c9ab1faca9d150105b22d;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pp_sys.c b/pp_sys.c index a35a206..85826cc 100644 --- a/pp_sys.c +++ b/pp_sys.c @@ -869,8 +869,8 @@ PP(pp_sselect) /* If SELECT_MIN_BITS is greater than one we most probably will want * to align the sizes with SELECT_MIN_BITS/8 because for example * in many little-endian (Intel, Alpha) systems (Linux, OS/2, Digital - * UNIX, Solaris, NeXT) the smallest quantum select() operates on - * (sets bit) is 32 bits. */ + * UNIX, Solaris, NeXT, Rhapsody) the smallest quantum select() operates + * on (sets/tests/clears bits) is 32 bits. */ growsize = maxlen + (SELECT_MIN_BITS/8 - (maxlen % (SELECT_MIN_BITS/8))); # else growsize = sizeof(fd_set);