blob: 15f70fb97a18b1b7ca4334e44425a7f943cee0f6 (
plain) (
blame)
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_tgkill, t->pid, t->tid, sig);
__unlock(&t->killlock);
return r;
}
|