summaryrefslogtreecommitdiff
path: root/src/signal
AgeCommit message (Expand)AuthorLines
2012-11-08clean up sloppy nested inclusion from pthread_impl.hRich Felker-0/+1
2012-10-18fix (hopefully; untested) completely broken/incomplete microblaze sigsetjmpRich Felker-3/+12
2012-10-17fix microblaze asm relocations for shared libcRich Felker-2/+2
2012-10-11avoid the thread-ptr-init behavior of sigaction when not installing handlerRich Felker-1/+2
2012-09-29microblaze portRich Felker-0/+20
2012-09-06further use of _Noreturn, for non-plain-C functionsRich Felker-1/+1
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker-8/+8
2012-08-09fix (hopefully) all hard-coded 8's for kernel sigset_t sizeRich Felker-7/+9
2012-07-12sigsetjmp asm for mipsRich Felker-0/+27
2012-07-11initial version of mips (o32) port, based on work by Richard Pennington (rdp)Rich Felker-0/+13
2012-07-11remove unused var in new sigaction codeRich Felker-1/+1
2012-07-11changes to kernel sigaction struct handling in preparation for mips portRich Felker-14/+17
2012-07-03jmp_buf overhaul fixing several issuesRich Felker-10/+7
2012-07-02fix sigsetjmp on arm (needs asm)Rich Felker-0/+13
2012-05-05update license of njk contributed code (x86_64 asm)Rich Felker-1/+1
2012-02-27work around "signal loses thread pointer" issue with "approach 2"Rich Felker-0/+5
2011-09-18initial commit of the arm portRich Felker-0/+11
2011-09-16fix generic sigsetjmp (unused anyway) pointer signedness errorRich Felker-1/+1
2011-09-12implement gnu sigisemptysetRich Felker-0/+9
2011-09-02fix missing prototypes/wrong signature for psiginfo, psignalRich Felker-1/+1
2011-08-05fix off-by-one bug in siglongjmp that caused unpredictable behaviorRich Felker-1/+1
2011-07-30fix race condition in sigqueueRich Felker-2/+8
2011-07-30clean up pthread_sigmask/sigprocmask dependency orderRich Felker-8/+4
2011-06-14restore use of .type in asm, but use modern @function (vs %function)Rich Felker-0/+6
2011-06-13remove all .size and .type directives for functions from the asmRich Felker-10/+0
2011-06-08implement psignal and psiginfoRich Felker-0/+20
2011-05-07overhaul implementation-internal signal protectionsRich Felker-29/+18
2011-04-17overhaul pthread cancellationRich Felker-12/+3
2011-04-14use a separate signal from SIGCANCEL for SIGEV_THREAD timersRich Felker-2/+3
2011-04-08fix broken sigsetjmp on x86_64Rich Felker-7/+9
2011-04-06consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefixRich Felker-3/+3
2011-03-25fix all implicit conversion between signed/unsigned pointersRich Felker-1/+1
2011-03-24overhaul cancellation to fix resource leaks and dangerous behavior with signalsRich Felker-0/+2
2011-03-20global cleanup to use the new syscall interfaceRich Felker-23/+10
2011-03-19syscall overhaul part two - unify public and internal syscall interfaceRich Felker-3/+3
2011-03-10fix errors in sigqueue (potential information leak, wrong behavior)Rich Felker-5/+7
2011-03-10remove useless return value checks for functions that cannot failRich Felker-3/+2
2011-03-10make sigsuspend a cancellation pointRich Felker-1/+6
2011-03-10make sigtimedwait a cancellation pointRich Felker-0/+3
2011-03-10don't fail with EINTR in sigtimedwaitRich Felker-6/+6
2011-03-10fix sigsuspend syscallRich Felker-1/+1
2011-03-10make sigaltstack work (missing macros in signal.h, error conditions)Rich Felker-1/+11
2011-03-09fix error handling for pthread_sigmaskRich Felker-1/+5
2011-03-09fix race condition in raise - just mask signalsRich Felker-9/+9
2011-03-09fix raise semantics with threads.Rich Felker-1/+12
2011-02-20fix null pointer dereference introduced in last sigprocmask commitRich Felker-1/+1
2011-02-19prevent sigprocmask/pthread_sigmask from blocking implementation signalsRich Felker-3/+5
2011-02-15Port musl to x86-64. One giant commit!Nicholas J. Kain-0/+22
2011-02-14header cleanup, conformance fixes - signalsRich Felker-6/+3
2011-02-13fix previous commit that broke sigreturn. looks like the asm is needed.Rich Felker-5/+17