K 10 svn:author V 5 peter K 8 svn:date V 27 2001-02-07T23:28:01.000000Z K 7 svn:log V 338 The code I picked up from NetBSD in '97 had a nasty bug. It limited the index of the pollfd array to the number of fd's currently open, not the maximum number of fd's. ie: if you had 0,1,2 open, you could not use pollfd slots higher than 20. The specs say we only have to support OPEN_MAX [64] entries but we allow way more than that. END