Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-12-11 | Revert "fix tst-signal7 failure" | Waldemar Brodkorb | |
This reverts commit ea21c7610aa1131b37a4533cf13dd89f727fb83f. This was accidently pushed, before first coffee. Sorry this is a bad commit. | |||
2015-12-10 | fix tst-signal7 failure | Waldemar Brodkorb | |
error out on internal NPTL used signals. | |||
2012-11-18 | Replace FSF snail mail address with URLs | Mike Frysinger | |
This matches a similar change made to glibc. No functional changes here. Signed-off-by: Mike Frysinger <vapier@gentoo.org> | |||
2012-06-15 | signal: cleanup, include only headers that are needed | Peter S. Mazinger | |
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2012-06-15 | signal.h: provide prototype for __libc_sigaction and remove all others | Peter S. Mazinger | |
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2012-01-28 | *: if !HAS_THREADS strong alias sigaction | Bernhard Reutner-Fischer | |
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2009-01-10 | libc/signal/sigaction.c: s/!=/==/ | Denis Vlasenko | |
2008-12-15 | sigaction overhaul as described in docs/sigaction.txt | Denis Vlasenko | |
Run tested on i386. | |||
2008-12-13 | Remove the rest of "bounded pointers" scaffolding. gcc website says" | Denis Vlasenko | |
"Bounds Checking Projects... This project has been abandoned" for four years at least. | |||
2008-12-01 | fix sigset_t size for mips (it's the only arch with 128 signals). | Denis Vlasenko | |
fix _NSIG for it. better document what's going on in sigaction(). seems to not induce any actual code changes (sans mips). | |||
2008-11-20 | next portion of libc_hidden_proto removal | Denis Vlasenko | |
2008-07-23 | - trim any trailing whitespace | Bernhard Reutner-Fischer | |
2008-05-19 | Moving libc_hidden_proto's into #ifdef UCLIBC_INTERNAL block | Denis Vlasenko | |
in string.h and strings.h. This caught unguarded string ops in libc/inet/ethers.c __ether_line_w() function. I will wait for fallout reports for a week or so, then continue converting more libc_hidden_proto's. | |||
2006-02-20 | update copyright with glibc | Mike Frysinger | |
2006-02-02 | even the hidden version of the weaks in libc (as strong in libpthread) have ↵ | Peter S. Mazinger | |
to be weaks | |||
2006-01-29 | create local prototype for __libc_sigaction | Mike Frysinger | |
2006-01-23 | make sigaction/raise/sigwait/siglongjmp/longjmp weak_alias, these are in ↵ | Peter S. Mazinger | |
libpthread as well | |||
2006-01-15 | make gcc4 happy w/ hidden_def/proto, correct some typos | Peter S. Mazinger | |
2006-01-14 | dont hide __libc_sigaction | Mike Frysinger | |
2006-01-14 | hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵ | Peter S. Mazinger | |
missing headers, other jump relocs removed | |||
2006-01-09 | sync with glibc | Mike Frysinger | |
2005-12-10 | Merge from NPTL branch. | "Steven J. Hill" | |
2005-12-08 | Try to mimic glibc sigaction, sjhill, could you please test w/ this version? | Peter S. Mazinger | |
2005-12-03 | More hiding, including __mempcpy | Peter S. Mazinger | |
2005-12-01 | Hide mostly used functions | Peter S. Mazinger | |
2005-11-15 | update licenses and sync with glibc | Mike Frysinger | |
2003-01-22 | Update sigaction syscall names to act more like glibc. Fix the x86 sigaction | Eric Andersen | |
implementation such that gdb can actually debug signal handlers. Gdb behaves much better now, for example, on multi-threaded apps. -Erik | |||
2003-01-22 | Looks like sigaction on arm needs adjustment, so split this into | Eric Andersen | |
a common header file and a default implementation. | |||
2002-02-16 | Use sizeof(sa_mask) instaed of sizeof(sigset_t) since sa_mask is | Eric Andersen | |
not always a sigset_t... Fix from Geoffrey Espin. | |||
2002-02-13 | A number of naming updates in preparation for adding in | Eric Andersen | |
proper threading. Most of this is from Stefan Soucek, with additions and changes as needed from me. | |||
2002-02-11 | HAVE_SA_RESTORER is supposed to be true, not false, on most arches. | Eric Andersen | |
-Erik | |||
2002-01-02 | Fix a few things I'd missed when using old (2.0.x) kernels. | Eric Andersen | |
-Erik | |||
2002-01-02 | Once again, rework the signal handling to be even more correct. We no | Eric Andersen | |
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 |