summaryrefslogtreecommitdiffstats
path: root/libc/signal
Commit message (Collapse)AuthorAgeFilesLines
...
* disable deprecated warnings for some filesMike Frysinger2006-01-204-0/+4
|
* make gcc4 happy w/ hidden_def/proto, correct some typosPeter S. Mazinger2006-01-152-2/+2
|
* revert 13331 and sync partly header w/ glibc, __sysv_signal is referenced in ↵Peter S. Mazinger2006-01-152-4/+6
| | | | header, keep it visible
* get rid of duplicates, even bsd_signal is questionablePeter S. Mazinger2006-01-142-7/+4
|
* make DODEBUG=y happy, update sysdeps/common/* copyrightPeter S. Mazinger2006-01-149-11/+11
|
* dont hide __libc_sigactionMike Frysinger2006-01-141-2/+2
|
* hidden_def/hidden_proto: convert all users (I hope) termios split, add some ↵Peter S. Mazinger2006-01-1420-70/+93
| | | | missing headers, other jump relocs removed
* sync with glibcMike Frysinger2006-01-091-2/+2
|
* hide __sigjmp_saveMike Frysinger2006-01-081-0/+2
|
* Merge from NPTL branch."Steven J. Hill"2005-12-101-0/+2
|
* The minimum is different for NPTL because of two new signals."Steven J. Hill"2005-12-101-0/+4
|
* hide __sigsetmaskPeter S. Mazinger2005-12-101-3/+2
|
* Implement hidden poll, switch user to hidden *printf/*scanf/pollPeter S. Mazinger2005-12-091-1/+1
|
* internal sigpause, do we really default to BSD signals?Peter S. Mazinger2005-12-095-5/+9
|
* Try to mimic glibc sigaction, sjhill, could you please test w/ this version?Peter S. Mazinger2005-12-086-12/+11
|
* Get rid again of memset relocPeter S. Mazinger2005-12-061-1/+1
|
* Get rid of compiler warning."Steven J. Hill"2005-12-061-1/+1
|
* More hiding, including __mempcpyPeter S. Mazinger2005-12-0312-22/+33
|
* Hide mostly used functionsPeter S. Mazinger2005-12-0110-14/+14
|
* sync with glibc (and shrinks the object code nicely by like half)Mike Frysinger2005-12-014-73/+76
|
* Remove TOPDIRPeter S. Mazinger2005-11-211-3/+1
|
* update licenses and sync with glibcMike Frysinger2005-11-1523-421/+493
|
* Hide internally used symbols, use weak_alias for raise/sigwait, as they ↵Peter S. Mazinger2005-11-142-2/+9
| | | | could be in libpthread too
* Let the #define do all the workEric Andersen2005-11-141-6/+0
|
* Lets not just paper over this. Add implementation of __xpg_sigpause()Eric Andersen2005-11-101-0/+6
|
* Enable IMAPeter S. Mazinger2005-11-031-3/+1
|
* Remove last unused references to libc-a-pic-, we use only the lists in ↵Peter S. Mazinger2005-11-011-1/+0
| | | | libc-a-y for objects that go into static libs, changing their suffix to .os, of they should be PIC
* Replace all Makefiles for new build infrastucturePeter S. Mazinger2005-10-291-36/+8
|
* All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other ↵Peter S. Mazinger2005-10-251-0/+36
| | | | archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally.
* Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵Peter S. Mazinger2005-10-121-8/+7
| | | | objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much.
* merge parallel build supportMike Frysinger2005-01-251-4/+4
|
* Peter Kjellerstedt writes:Eric Andersen2003-10-181-1/+1
| | | | | | | rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM).
* Quick implementation of sigwait. Doesn't handle thread cancelationEric Andersen2003-10-032-7/+35
| | | | yet, but should work...
* Update sigaction syscall names to act more like glibc. Fix the x86 sigactionEric Andersen2003-01-221-2/+14
| | | | | | implementation such that gdb can actually debug signal handlers. Gdb behaves much better now, for example, on multi-threaded apps. -Erik
* Looks like sigaction on arm needs adjustment, so split this intoEric Andersen2003-01-221-111/+14
| | | | a common header file and a default implementation.
* Fix pthreads to use the rt signals if presentEric Andersen2002-06-131-43/+21
| | | | -Erik
* -#ifdef _POSIX_THREADSEric Andersen2002-05-301-2/+3
| | | | +#ifdef __UCLIBC_HAS_THREADS__
* Use sizeof(sa_mask) instaed of sizeof(sigset_t) since sa_mask isEric Andersen2002-02-161-2/+2
| | | | not always a sigset_t... Fix from Geoffrey Espin.
* A number of naming updates in preparation for adding inEric Andersen2002-02-132-4/+6
| | | | | proper threading. Most of this is from Stefan Soucek, with additions and changes as needed from me.
* HAVE_SA_RESTORER is supposed to be true, not false, on most arches.Eric Andersen2002-02-111-10/+23
| | | | -Erik
* use X/Open __sysv_signal name, then use the weak name for sysv_signalEric Andersen2002-02-051-2/+2
| | | | -Erik
* Fixup setjmp implementation so it actaully works as expectedEric Andersen2002-01-301-14/+12
| | | | -Erik
* Fix a few things I'd missed when using old (2.0.x) kernels.Eric Andersen2002-01-023-51/+2
| | | | -Erik
* Once again, rework the signal handling to be even more correct. We noEric Andersen2002-01-0227-391/+739
| | | | | | | | | 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
* Update my email address. I am no longer andersen@lineo.comEric Andersen2001-12-192-2/+4
|
* Fix support for sysv style signalsEric Andersen2001-11-212-1/+59
|
* These are now obsoleteEric Andersen2001-10-172-74/+0
|
* Fix up sig handling so it is more in sync with glibc behaviorEric Andersen2001-10-1715-87/+410
|
* Minor cleanupsEric Andersen2001-10-033-0/+3
|
* Update to accomodate the header file changesEric Andersen2001-09-276-8/+10
|