mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-17 10:26:15 +00:00
More reliably check timeout for pthread_mutex_timedlock.
This commit is contained in:
parent
5091e3df70
commit
d5c854e890
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=123310
@ -752,7 +752,7 @@ mutex_lock_common(struct pthread *curthread, pthread_mutex_t *m,
|
||||
} while (((*m)->m_owner != curthread) && (ret == 0) &&
|
||||
(curthread->interrupted == 0) && (curthread->timeout == 0));
|
||||
|
||||
if (ret == 0 && curthread->timeout)
|
||||
if (ret == 0 && (*m)->m_owner != curthread && curthread->timeout)
|
||||
ret = ETIMEDOUT;
|
||||
|
||||
/*
|
||||
|
@ -752,7 +752,7 @@ mutex_lock_common(struct pthread *curthread, pthread_mutex_t *m,
|
||||
} while (((*m)->m_owner != curthread) && (ret == 0) &&
|
||||
(curthread->interrupted == 0) && (curthread->timeout == 0));
|
||||
|
||||
if (ret == 0 && curthread->timeout)
|
||||
if (ret == 0 && (*m)->m_owner != curthread && curthread->timeout)
|
||||
ret = ETIMEDOUT;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user