Explorar o código

fix pthread_kill unlocking

it had not been updated for the futex-based locks
Rich Felker %!s(int64=12) %!d(string=hai) anos
pai
achega
c89f130f39
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/thread/pthread_kill.c

+ 1 - 1
src/thread/pthread_kill.c

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