summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/common/poll.c
Commit message (Collapse)AuthorAgeFilesLines
* Based on a patch from Alexandre Oliva, remove all reference to 'bzero' (whichEric Andersen2004-03-181-12/+12
| | | | | is not a SuSv3 symbol). Rather than using __bzero internally per Alexandre's original patch, use memset instead.
* Fix bug from the syscall reorganization, detected by python's test_poll.py.Manuel Novoa III2004-02-111-3/+3
| | | | | | | The #ifdef __NR_poll test was failing because it was done before any includes. Hence, the emulation was always being used. NOTE: The emulation fails a couple of tests in test_poll.py!
* Move poll to its own file, rather than being only half in its own fileEric Andersen2004-01-211-0/+12
|
* Per suggestion and patch from Ken Staton, emulates poll usingEric Andersen2003-10-221-0/+192
select for older 2.0 kernels where poll is missing.