split internal lock API out of libc.h, creating lock.h
[musl.git] / src / thread / pthread_kill.c
blob3d9395cb7e0a0b5797c962e4af2d22d95de93718
1 #include "pthread_impl.h"
2 #include "lock.h"
4 int pthread_kill(pthread_t t, int sig)
6 int r;
7 LOCK(t->killlock);
8 r = t->tid ? -__syscall(SYS_tkill, t->tid, sig)
9 : (sig+0U >= _NSIG ? EINVAL : 0);
10 UNLOCK(t->killlock);
11 return r;