Age | Commit message (Expand) | Author | Files | Lines |
2013-04-26 | transition to using functions for internal signal blocking/restoring | Rich Felker | 3 | -4/+48 |
2013-04-26 | optimize/debloat raise | Rich Felker | 1 | -2/+2 |
2013-04-22 | fix reversed argument order x86_64 sigsetjmp's call to sigprocmask | Rich Felker | 1 | -2/+2 |
2013-03-26 | remove __SYSCALL_SSLEN arch macro in favor of using public _NSIG | Rich Felker | 5 | -6/+6 |
2012-12-06 | fix sigorset/sigandset: _NSIG/8 is the size in bytes | rofl0r | 2 | -2/+2 |
2012-12-06 | sigandset/sigorset: do not check for NULL pointers. | rofl0r | 2 | -10/+0 |
2012-12-06 | fixup sigandset | rofl0r | 2 | -2/+2 |
2012-12-06 | add sigandset and sigorset (needed for qemu) | rofl0r | 2 | -0/+34 |
2012-11-23 | fix powerpc sigsetjmp asm to match the new jmp_buf size/offsets | Rich Felker | 1 | -2/+2 |
2012-11-19 | powerpc: handle syscall error in clone. | rofl0r | 1 | -14/+15 |
2012-11-18 | fix powerpc asm not to store data in volatile space below stack pointer | Rich Felker | 1 | -8/+8 |
2012-11-14 | fix indention with spaces in powerpc asm | Rich Felker | 2 | -10/+10 |
2012-11-14 | Merge remote-tracking branch 'ppc-port/ppc-squashed' | Rich Felker | 2 | -0/+45 |
2012-11-13 | PPC port cleaned up, static linking works well now. | rofl0r | 4 | -25/+45 |
2012-11-13 | import preliminary ppc work by rdp. | Richard Pennington | 2 | -0/+25 |
2012-11-08 | clean up sloppy nested inclusion from pthread_impl.h | Rich Felker | 1 | -0/+1 |
2012-10-18 | fix (hopefully; untested) completely broken/incomplete microblaze sigsetjmp | Rich Felker | 1 | -3/+12 |
2012-10-17 | fix microblaze asm relocations for shared libc | Rich Felker | 1 | -2/+2 |
2012-10-11 | avoid the thread-ptr-init behavior of sigaction when not installing handler | Rich Felker | 1 | -1/+2 |
2012-09-29 | microblaze port | Rich Felker | 2 | -0/+20 |
2012-09-06 | further use of _Noreturn, for non-plain-C functions | Rich Felker | 1 | -1/+1 |
2012-09-06 | use restrict everywhere it's required by c99 and/or posix 2008 | Rich Felker | 7 | -8/+8 |
2012-08-09 | fix (hopefully) all hard-coded 8's for kernel sigset_t size | Rich Felker | 5 | -7/+9 |
2012-07-12 | sigsetjmp asm for mips | Rich Felker | 1 | -0/+27 |
2012-07-11 | initial version of mips (o32) port, based on work by Richard Pennington (rdp) | Rich Felker | 1 | -0/+13 |
2012-07-11 | remove unused var in new sigaction code | Rich Felker | 1 | -1/+1 |
2012-07-11 | changes to kernel sigaction struct handling in preparation for mips port | Rich Felker | 2 | -14/+17 |
2012-07-03 | jmp_buf overhaul fixing several issues | Rich Felker | 2 | -10/+7 |
2012-07-02 | fix sigsetjmp on arm (needs asm) | Rich Felker | 1 | -0/+13 |
2012-05-05 | update license of njk contributed code (x86_64 asm) | Rich Felker | 1 | -1/+1 |
2012-02-27 | work around "signal loses thread pointer" issue with "approach 2" | Rich Felker | 1 | -0/+5 |
2011-09-18 | initial commit of the arm port | Rich Felker | 1 | -0/+11 |
2011-09-16 | fix generic sigsetjmp (unused anyway) pointer signedness error | Rich Felker | 1 | -1/+1 |
2011-09-12 | implement gnu sigisemptyset | Rich Felker | 1 | -0/+9 |
2011-09-02 | fix missing prototypes/wrong signature for psiginfo, psignal | Rich Felker | 1 | -1/+1 |
2011-08-05 | fix off-by-one bug in siglongjmp that caused unpredictable behavior | Rich Felker | 1 | -1/+1 |
2011-07-30 | fix race condition in sigqueue | Rich Felker | 1 | -2/+8 |
2011-07-30 | clean up pthread_sigmask/sigprocmask dependency order | Rich Felker | 1 | -8/+4 |
2011-06-14 | restore use of .type in asm, but use modern @function (vs %function) | Rich Felker | 4 | -0/+6 |
2011-06-13 | remove all .size and .type directives for functions from the asm | Rich Felker | 2 | -10/+0 |
2011-06-08 | implement psignal and psiginfo | Rich Felker | 2 | -0/+20 |
2011-05-07 | overhaul implementation-internal signal protections | Rich Felker | 8 | -29/+18 |
2011-04-17 | overhaul pthread cancellation | Rich Felker | 2 | -12/+3 |
2011-04-14 | use a separate signal from SIGCANCEL for SIGEV_THREAD timers | Rich Felker | 3 | -2/+3 |
2011-04-08 | fix broken sigsetjmp on x86_64 | Rich Felker | 1 | -7/+9 |
2011-04-06 | consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix | Rich Felker | 3 | -3/+3 |
2011-03-25 | fix all implicit conversion between signed/unsigned pointers | Rich Felker | 1 | -1/+1 |
2011-03-24 | overhaul cancellation to fix resource leaks and dangerous behavior with signals | Rich Felker | 2 | -0/+2 |
2011-03-20 | global cleanup to use the new syscall interface | Rich Felker | 8 | -23/+10 |
2011-03-19 | syscall overhaul part two - unify public and internal syscall interface | Rich Felker | 3 | -3/+3 |