summaryrefslogtreecommitdiffstats
path: root/libc/signal/sigset.c
Commit message (Collapse)AuthorAgeFilesLines
* 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>
* Synch with trunk @ 24242Carmelo Amoroso2008-12-031-28/+16
| | | | | Step 18: some more synch: hidden_proto, size reduction and signal handling changes.
* Synch with trunk @ 24165Carmelo Amoroso2008-11-271-2/+2
| | | | | Step 17: libc_hidden_proto removal (almost all). and other minor changes (inline keyword, extra character)
* BIG BIG commit: all left files merged from trunk [rev 22714]. Currenntly ↵Carmelo Amoroso2008-07-091-4/+1
| | | | 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>
* Merge from trunk."Steven J. Hill"2006-02-261-5/+4
|
* Merge from trunk."Steven J. Hill"2005-12-101-0/+2
|
* Fix 'sigaction' for NPTL and other thread models."Steven J. Hill"2005-12-081-2/+0
|
* Merge from trunk."Steven J. Hill"2005-12-031-0/+2
|
* Merge from trunk."Steven J. Hill"2005-12-021-2/+2
|
* Massive merge from trunk."Steven J. Hill"2005-11-181-44/+49
|
* A number of naming updates in preparation for adding inEric Andersen2002-02-131-1/+1
| | | | | proper threading. Most of this is from Stefan Soucek, with additions and changes as needed from me.
* Once again, rework the signal handling to be even more correct. We noEric Andersen2002-01-021-0/+78
longer segfault when running test/signal/sigchld.c, which exposed a bit of a rats nest. The problem ended up being a erroneous syscall defination, but in the process of finding that out, I scrubbed things up nicely and adapted things to use the rt_ signals if they are available. This now passes all the signal tests. -Erik