mirror of
git://sourceware.org/git/glibc.git
synced 2025-04-06 14:10:30 +08:00
NaCl: Fix thinko in last change.
This commit is contained in:
parent
1f3a37b19c
commit
4da82229f0
@ -36,17 +36,18 @@ __lll_timedlock_wait (int *futex, const struct timespec *abstime, int private)
|
||||
return EINVAL;
|
||||
|
||||
/* Try locking. */
|
||||
int result = 0;
|
||||
while (atomic_exchange_acq (futex, 2) != 0)
|
||||
{
|
||||
/* If *futex == 2, wait until woken or timeout. */
|
||||
result = __nacl_irt_futex.futex_wait_abs ((volatile int *) futex, 2,
|
||||
abstime);
|
||||
if (__glibc_likely (result == 0)
|
||||
|| __glibc_likely (result == ETIMEDOUT))
|
||||
break;
|
||||
assert (result == EAGAIN);
|
||||
int err = __nacl_irt_futex.futex_wait_abs ((volatile int *) futex, 2,
|
||||
abstime);
|
||||
if (err != 0)
|
||||
{
|
||||
if (__glibc_likely (err == ETIMEDOUT))
|
||||
return err;
|
||||
assert (err == EAGAIN);
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user