summaryrefslogtreecommitdiff
path: root/src/thread/pthread_kill.c
blob: 0a139231caae5afad1ae11b54f659fd64fecb07f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include "pthread_impl.h"

int pthread_kill(pthread_t t, int sig)
{
	int r;
	LOCK(t->killlock);
	r = t->dead ? (sig+0U >= _NSIG ? EINVAL : 0)
		: -__syscall(SYS_tkill, t->tid, sig);
	UNLOCK(t->killlock);
	return r;
}