about summary refs log tree commit diff
path: root/src/signal/block.c
Commit message (Collapse)AuthorAgeFilesLines
* transition to using functions for internal signal blocking/restoringRich Felker2013-04-261-0/+44
there are several reasons for this change. one is getting rid of the repetition of the syscall signature all over the place. another is sharing the constant masks without costly GOT accesses in PIC. the main motivation, however, is accurately representing whether we want to block signals that might be handled by the application, or all signals.