提交 c89f130f 编写于 作者: R Rich Felker

fix pthread_kill unlocking

it had not been updated for the futex-based locks
上级 ea4175e7
...@@ -5,6 +5,6 @@ int pthread_kill(pthread_t t, int sig) ...@@ -5,6 +5,6 @@ int pthread_kill(pthread_t t, int sig)
int r; int r;
__lock(&t->killlock); __lock(&t->killlock);
r = t->dead ? ESRCH : -__syscall(SYS_tgkill, t->pid, t->tid, sig); r = t->dead ? ESRCH : -__syscall(SYS_tgkill, t->pid, t->tid, sig);
a_store(&t->killlock, 0); __unlock(&t->killlock);
return r; return r;
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册