Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-01-29 | create local prototype for __libc_sigaction | Mike Frysinger | |
2006-01-26 | Get rid of missing prototype warnings | Peter S. Mazinger | |
2006-01-23 | make sigaction/raise/sigwait/siglongjmp/longjmp weak_alias, these are in ↵ | Peter S. Mazinger | |
libpthread as well | |||
2006-01-23 | Change to build w/ -std=c99 | Peter S. Mazinger | |
2006-01-23 | Get rid of nested warnings | Peter S. Mazinger | |
2006-01-22 | Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵ | Peter S. Mazinger | |
is a useless attempt | |||
2006-01-20 | disable deprecated warnings for some files | Mike Frysinger | |
2006-01-15 | make gcc4 happy w/ hidden_def/proto, correct some typos | Peter S. Mazinger | |
2006-01-15 | revert 13331 and sync partly header w/ glibc, __sysv_signal is referenced in ↵ | Peter S. Mazinger | |
header, keep it visible | |||
2006-01-14 | get rid of duplicates, even bsd_signal is questionable | Peter S. Mazinger | |
2006-01-14 | make DODEBUG=y happy, update sysdeps/common/* copyright | 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 | |
2006-01-08 | hide __sigjmp_save | Mike Frysinger | |
2005-12-10 | Merge from NPTL branch. | "Steven J. Hill" | |
2005-12-10 | The minimum is different for NPTL because of two new signals. | "Steven J. Hill" | |
2005-12-10 | hide __sigsetmask | Peter S. Mazinger | |
2005-12-09 | Implement hidden poll, switch user to hidden *printf/*scanf/poll | Peter S. Mazinger | |
2005-12-09 | internal sigpause, do we really default to BSD signals? | Peter S. Mazinger | |
2005-12-08 | Try to mimic glibc sigaction, sjhill, could you please test w/ this version? | Peter S. Mazinger | |
2005-12-06 | Get rid again of memset reloc | Peter S. Mazinger | |
2005-12-06 | Get rid of compiler warning. | "Steven J. Hill" | |
2005-12-03 | More hiding, including __mempcpy | Peter S. Mazinger | |
2005-12-01 | Hide mostly used functions | Peter S. Mazinger | |
2005-12-01 | sync with glibc (and shrinks the object code nicely by like half) | Mike Frysinger | |
2005-11-21 | Remove TOPDIR | Peter S. Mazinger | |
2005-11-15 | update licenses and sync with glibc | Mike Frysinger | |
2005-11-14 | Hide internally used symbols, use weak_alias for raise/sigwait, as they ↵ | Peter S. Mazinger | |
could be in libpthread too | |||
2005-11-14 | Let the #define do all the work | Eric Andersen | |
2005-11-10 | Lets not just paper over this. Add implementation of __xpg_sigpause() | Eric Andersen | |
2005-11-03 | Enable IMA | Peter S. Mazinger | |
2005-11-01 | Remove last unused references to libc-a-pic-, we use only the lists in ↵ | Peter S. Mazinger | |
libc-a-y for objects that go into static libs, changing their suffix to .os, of they should be PIC | |||
2005-10-29 | Replace all Makefiles for new build infrastucture | Peter S. Mazinger | |
2005-10-25 | All Makefile.in's. Only arm/i386/mips/powerpc/x86_64 are done, the other ↵ | Peter S. Mazinger | |
archs lack proper crt1. The Makefiles in extra/scripts are intended to be linked into each dir, where it is necessary to build locally. | |||
2005-10-12 | Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵ | Peter S. Mazinger | |
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. | |||
2005-01-25 | merge parallel build support | Mike Frysinger | |
2003-10-18 | Peter Kjellerstedt writes: | Eric Andersen | |
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). | |||
2003-10-03 | Quick implementation of sigwait. Doesn't handle thread cancelation | Eric Andersen | |
yet, but should work... | |||
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-06-13 | Fix pthreads to use the rt signals if present | Eric Andersen | |
-Erik | |||
2002-05-30 | -#ifdef _POSIX_THREADS | Eric Andersen | |
+#ifdef __UCLIBC_HAS_THREADS__ | |||
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-02-05 | use X/Open __sysv_signal name, then use the weak name for sysv_signal | Eric Andersen | |
-Erik | |||
2002-01-30 | Fixup setjmp implementation so it actaully works as expected | 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 |