blob: 3d9395cb7e0a0b5797c962e4af2d22d95de93718 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "pthread_impl.h"
#include "lock.h"
int pthread_kill(pthread_t t, int sig)
{
int r;
LOCK(t->killlock);
r = t->tid ? -__syscall(SYS_tkill, t->tid, sig)
: (sig+0U >= _NSIG ? EINVAL : 0);
UNLOCK(t->killlock);
return r;
}
|