aboutsummaryrefslogtreecommitdiff
path: root/src/thread/pthread_rwlock_trywrlock.c
blob: 773c3ddf9c7cf537927556dba3e5ae9bb8849b51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "pthread_impl.h"

int __pthread_rwlock_trywrlock(pthread_rwlock_t *rw)
{
	if (a_cas(&rw->_rw_lock, 0, 0x7fffffff)) return EBUSY;
	return 0;
}

weak_alias(__pthread_rwlock_trywrlock, pthread_rwlock_trywrlock);


#ifdef TEST
int
main(void) {
	return 0;
}
#endif