musl/src/thread/pthread_kill.c
Rich Felker c89f130f39 fix pthread_kill unlocking
it had not been updated for the futex-based locks
2012-07-12 11:14:12 -04:00

10 lines
205 B
C

#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;
}