summaryrefslogtreecommitdiffstats
path: root/lib/libc/sys/thrkill.2 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* This is thrkill, not __thrsigdivertguenther2016-03-191-3/+3
|
* Split the intra-thread functionality from kill(2) into its own syscallguenther2015-11-101-0/+105
thrkill(2), rolling the kill(2) syscall number with the ABI change to avoid breaking binaries during during the transition. thrkill(2) includes a 'tcb' argument that eliminates the need for locking in pthread_kill() and simplifies pthread_cancel(). Switch __stack_smash_handler() to use thrkill(2) and explicitly unblock SIGABRT. Minor bump to both libc and libpthread: make sure you install a new kernel! ok semarie@