this allows sys/types.h to provide the pthread types, as required by POSIX. this design also facilitates forcing ABI-compatible sizes in the arch-specific alltypes.h, while eliminating the need for developers changing the internals of the pthread types to poke around with arch-specific headers they may not be able to test.
14 lines
267 B
C
14 lines
267 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_rwlock_tryrdlock(pthread_rwlock_t *rw)
|
|
{
|
|
a_inc(&rw->_rw_readers);
|
|
if (rw->_rw_wrlock) {
|
|
a_dec(&rw->_rw_readers);
|
|
if (rw->_rw_waiters && !rw->_rw_readers)
|
|
__wake(&rw->_rw_readers, 1, 0);
|
|
return EAGAIN;
|
|
}
|
|
return 0;
|
|
}
|