0b44a031
7779dbd2 ^
c4bc0b1a ^
83dc6eb0 ^
1 2 3 4
5
6
7
8
9
10
#include "pthread_impl.h" int pthread_kill(pthread_t t, int sig) { int r; LOCK(t->killlock); r = t->dead ? ESRCH : -__syscall(SYS_tkill, t->tid, sig); UNLOCK(t->killlock); return r; }