mirror of
git://git.musl-libc.org/musl
synced 2025-01-31 02:51:32 +00:00
fix pthread_kill unlocking
it had not been updated for the futex-based locks
This commit is contained in:
parent
ea4175e73f
commit
c89f130f39
@ -5,6 +5,6 @@ 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);
|
||||
a_store(&t->killlock, 0);
|
||||
__unlock(&t->killlock);
|
||||
return r;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user