Fix typo that broke recursive mutexes implementation.

Change-Id: I832901604b487c6a50304c311b5ba135e153530d
This commit is contained in:
David 'Digit' Turner 2010-03-23 05:30:55 -07:00
parent b5e4a41606
commit 5207d78c32

View File

@ -1124,7 +1124,7 @@ int pthread_mutex_unlock(pthread_mutex_t *mutex)
/* Wake one waiting thread, if any */
if ((oldv & 3) == 2) {
int wake_op = shared ? FUTEX_WAIT_PRIVATE : FUTEX_WAIT;
int wake_op = shared ? FUTEX_WAKE : FUTEX_WAKE_PRIVATE;
__futex_syscall3(&mutex->value, wake_op, 1);
}
return 0;