mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-08 07:42:09 +03:00
rwlock trylock functions were wrongly returning EAGAIN instead of EBUSY
This commit is contained in:
parent
7e6be42a77
commit
e5dd18319b
@ -7,7 +7,7 @@ int pthread_rwlock_tryrdlock(pthread_rwlock_t *rw)
|
||||
a_dec(&rw->_rw_readers);
|
||||
if (rw->_rw_waiters && !rw->_rw_readers)
|
||||
__wake(&rw->_rw_readers, 1, 0);
|
||||
return EAGAIN;
|
||||
return EBUSY;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -3,10 +3,10 @@
|
||||
int pthread_rwlock_trywrlock(pthread_rwlock_t *rw)
|
||||
{
|
||||
if (a_xchg(&rw->_rw_wrlock, 1))
|
||||
return EAGAIN;
|
||||
return EBUSY;
|
||||
if (rw->_rw_readers) {
|
||||
a_store(&rw->_rw_wrlock, 0);
|
||||
return EAGAIN;
|
||||
return EBUSY;
|
||||
}
|
||||
rw->_rw_owner = pthread_self()->tid;
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user