about summary refs log tree commit diff
path: root/src/signal
Commit message (Expand)AuthorAgeFilesLines
* remove __SYSCALL_SSLEN arch macro in favor of using public _NSIGRich Felker2013-03-265-6/+6
* fix sigorset/sigandset: _NSIG/8 is the size in bytesrofl0r2012-12-062-2/+2
* sigandset/sigorset: do not check for NULL pointers.rofl0r2012-12-062-10/+0
* fixup sigandsetrofl0r2012-12-062-2/+2
* add sigandset and sigorset (needed for qemu)rofl0r2012-12-062-0/+34
* fix powerpc sigsetjmp asm to match the new jmp_buf size/offsetsRich Felker2012-11-231-2/+2
* powerpc: handle syscall error in clone.rofl0r2012-11-191-14/+15
* fix powerpc asm not to store data in volatile space below stack pointerRich Felker2012-11-181-8/+8
* fix indention with spaces in powerpc asmRich Felker2012-11-142-10/+10
* Merge remote-tracking branch 'ppc-port/ppc-squashed'Rich Felker2012-11-142-0/+45
|\
| * PPC port cleaned up, static linking works well now.rofl0r2012-11-134-25/+45
| * import preliminary ppc work by rdp.Richard Pennington2012-11-132-0/+25
* | clean up sloppy nested inclusion from pthread_impl.hRich Felker2012-11-081-0/+1
|/
* fix (hopefully; untested) completely broken/incomplete microblaze sigsetjmpRich Felker2012-10-181-3/+12
* fix microblaze asm relocations for shared libcRich Felker2012-10-171-2/+2
* avoid the thread-ptr-init behavior of sigaction when not installing handlerRich Felker2012-10-111-1/+2
* microblaze portRich Felker2012-09-292-0/+20
* further use of _Noreturn, for non-plain-C functionsRich Felker2012-09-061-1/+1
* use restrict everywhere it's required by c99 and/or posix 2008Rich Felker2012-09-067-8/+8
* fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker2012-08-095-7/+9
* sigsetjmp asm for mipsRich Felker2012-07-121-0/+27
* initial version of mips (o32) port, based on work by Richard Pennington (rdp)Rich Felker2012-07-111-0/+13
* remove unused var in new sigaction codeRich Felker2012-07-111-1/+1
* changes to kernel sigaction struct handling in preparation for mips portRich Felker2012-07-112-14/+17
* jmp_buf overhaul fixing several issuesRich Felker2012-07-032-10/+7
* fix sigsetjmp on arm (needs asm)Rich Felker2012-07-021-0/+13
* update license of njk contributed code (x86_64 asm)Rich Felker2012-05-051-1/+1
* work around "signal loses thread pointer" issue with "approach 2"Rich Felker2012-02-271-0/+5
* initial commit of the arm portRich Felker2011-09-181-0/+11
* fix generic sigsetjmp (unused anyway) pointer signedness errorRich Felker2011-09-161-1/+1
* implement gnu sigisemptysetRich Felker2011-09-121-0/+9
* fix missing prototypes/wrong signature for psiginfo, psignalRich Felker2011-09-021-1/+1
* fix off-by-one bug in siglongjmp that caused unpredictable behaviorRich Felker2011-08-051-1/+1
* fix race condition in sigqueueRich Felker2011-07-301-2/+8
* clean up pthread_sigmask/sigprocmask dependency orderRich Felker2011-07-301-8/+4
* restore use of .type in asm, but use modern @function (vs %function)Rich Felker2011-06-144-0/+6
* remove all .size and .type directives for functions from the asmRich Felker2011-06-132-10/+0
* implement psignal and psiginfoRich Felker2011-06-082-0/+20
* overhaul implementation-internal signal protectionsRich Felker2011-05-078-29/+18
* overhaul pthread cancellationRich Felker2011-04-172-12/+3
* use a separate signal from SIGCANCEL for SIGEV_THREAD timersRich Felker2011-04-143-2/+3
* fix broken sigsetjmp on x86_64Rich Felker2011-04-081-7/+9
* consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefixRich Felker2011-04-063-3/+3
* fix all implicit conversion between signed/unsigned pointersRich Felker2011-03-251-1/+1
* overhaul cancellation to fix resource leaks and dangerous behavior with signalsRich Felker2011-03-242-0/+2
* global cleanup to use the new syscall interfaceRich Felker2011-03-208-23/+10
* syscall overhaul part two - unify public and internal syscall interfaceRich Felker2011-03-193-3/+3
* fix errors in sigqueue (potential information leak, wrong behavior)Rich Felker2011-03-101-5/+7
* remove useless return value checks for functions that cannot failRich Felker2011-03-101-3/+2
* make sigsuspend a cancellation pointRich Felker2011-03-101-1/+6