about summary refs log tree commit diff
path: root/src/signal
Commit message (Expand)AuthorAgeFilesLines
* consistently use _NSIG/8 idiom for kernel sigset size in sigactionRich Felker2018-09-011-3/+3
* always terminate by SIGABRT when abort is calledRich Felker2018-09-011-4/+21
* optimize raise not to make a syscall for getting tidRich Felker2018-09-011-3/+1
* prevent psignal/psiginfo from clobbering stderr orientation, errnoRich Felker2018-08-302-8/+21
* add m68k portRich Felker2018-06-191-0/+29
* optimize sigisemptysetRich Felker2018-05-011-2/+3
* add public interface headers to implementation filesRich Felker2018-02-251-0/+2
* ppc64: fix setjmp/longjmp handling of TOC pointerBobby Bingham2017-08-111-7/+14
* fix crashing sigsetjmp on s390xBobby Bingham2016-12-161-1/+1
* work around gdb issues recognizing sigreturn trampoline on x86_64Rich Felker2016-11-122-8/+6
* add s390x portBobby Bingham2016-11-112-0/+32
* add powerpc64 portBobby Bingham2016-05-082-0/+41
* add mips n32 port (ILP32 ABI for mips64)Rich Felker2016-04-182-0/+47
* add mips64 portRich Felker2016-03-062-0/+47
* fix crash when signal number 0 is passed to sigactionRich Felker2015-12-151-5/+1
* eliminate use of SHARED macro to suppress visibility attributesRich Felker2015-11-111-2/+0
* explicitly assemble all arm asm sources as UALRich Felker2015-11-102-0/+3
* fix signal return for sh/fdpicRich Felker2015-09-232-4/+0
* remove unused (and invalid) C version of sigsetjmpRich Felker2015-09-091-17/+0
* switch to using trap number 31 for syscalls on shRich Felker2015-06-161-2/+2
* fix crash in x32 sigsetjmpRich Felker2015-05-021-0/+1
* fix sh jmp_buf size to match ABIRich Felker2015-04-271-2/+2
* fix build regression in aarch64 sigsetjmpRich Felker2015-04-241-2/+2
* remove invalid PLT calls from or1k asmRich Felker2015-04-191-3/+4
* remove possible-textrels from powerpc asmRich Felker2015-04-191-2/+3
* remove invalid PLT calls from microblaze asmRich Felker2015-04-191-2/+3
* remove invalid PLT calls from sh asmRich Felker2015-04-191-2/+3
* remove potentially PIC-incompatible relocations from x86_64 and x32 asmRich Felker2015-04-182-4/+4
* remove the last of possible-textrels from i386 asmRich Felker2015-04-181-2/+3
* redesign sigsetjmp so that signal mask is restored after longjmpRich Felker2015-04-1712-133/+177
* add aarch64 portSzabolcs Nagy2015-03-112-0/+27
* use tkill instead of tgkill in implementing raiseRich Felker2014-12-181-3/+2
* add or1k (OpenRISC 1000) architecture portStefan Kristiansson2014-07-181-0/+22
* add __sysv_signal abi-compat alias for the signal functionRich Felker2014-06-221-0/+1
* add __sigsetjmp ABI-compat alias for sigsetjmpRich Felker2014-04-029-1/+28
* always initialize thread pointer at program startRich Felker2014-03-241-4/+15
* fix mips sigsetjmp asm to match fixed jmp_buf sizeRich Felker2014-03-181-1/+1
* rename superh port to "sh" for consistencyRich Felker2014-02-272-0/+0
* superh portBobby Bingham2014-02-232-0/+51
* x32 port (diff against vanilla x86_64)rofl0r2014-02-231-1/+1
* import vanilla x86_64 code as x32rofl0r2014-02-232-0/+22
* fix const-correctness in sigandset/sigorset argumentsRich Felker2014-01-072-2/+2
* use 0 instead of NULL for null pointer constantsRich Felker2013-12-137-15/+8
* include cleanups: remove unused headers and add feature test macrosSzabolcs Nagy2013-12-1214-14/+5
* fix sigemptyset and sigfillset for mipsRich Felker2013-09-162-1/+10
* fix breakage in synccall due to incorrect signal restoration in sigqueueRich Felker2013-08-311-2/+3
* fix _NSIG and SIGRTMAX on mipsRich Felker2013-08-101-1/+3
* change sigset_t functions to restrict to _NSIGRich Felker2013-08-094-5/+5
* optimize posix_spawn to avoid spurious sigaction syscallsRich Felker2013-08-092-5/+16
* use separate sigaction buffers for old and new dataTimo Teräs2013-07-302-8/+8