summaryrefslogblamecommitdiff
path: root/src/thread/pthread_rwlock_tryrdlock.c
blob: fa271fcc6a156a78e9dfe975bf084113e3aa3167 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                                                  






                                                          

                 
#include "pthread_impl.h"

int pthread_rwlock_tryrdlock(pthread_rwlock_t *rw)
{
	int val, cnt;
	do {
		val = rw->_rw_lock;
		cnt = val & 0x7fffffff;
		if (cnt == 0x7fffffff) return EBUSY;
		if (cnt == 0x7ffffffe) return EAGAIN;
	} while (a_cas(&rw->_rw_lock, val, val+1) != val);
	return 0;
}