summaryrefslogtreecommitdiffstats
path: root/libc/sysdeps/linux/common/poll.c
Commit message (Collapse)AuthorAgeFilesLines
* whitespace fixesAustin Foxley2009-10-171-1/+1
| | | | Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* trim Experimentally off and uncommented hiddenAustin Foxley2009-09-181-2/+0
| | | | | | | | sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
* BIG BIG commit: all left files merged from trunk [rev 22714]. Currenntly ↵Carmelo Amoroso2008-07-091-3/+3
| | | | NPTL sh4 port build and work fine. All committed to allow Khem Ray working on a working branch to integrate the ARM nptl port. MIPS nptl port not tested but should still building and working fine. There are some other part non yet merged with trunk (misc/internals and some headers file that need some more work). Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Push back changes to add cancellation handling.Carmelo Amoroso2007-11-221-19/+21
| | | | | | | | It still needs to reach an agreement on the final solution, anyway this code have been put int to be shared for the mips-sh4 merge Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
* Well, this is everything for my NPTL implementation. The 'uClibc-nptl' ↵"Steven J. Hill"2006-08-241-22/+44
| | | | branch is now the exact code that I have. I am going to re-run tests now to verify everything one more time. The next step after that is to merge from trunk with the latest stuff from Mike and Peter.
* Finish up changes for sigaction and NPTL."Steven J. Hill"2005-12-101-4/+5
|
* Big merge from trunk. Stop the madness!"Steven J. Hill"2005-12-061-0/+2
|
* Merge from trunk."Steven J. Hill"2005-12-021-15/+15
|
* 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.