pthread_rwlock_trywrlock.c\thread\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/thread/pthread_rwlock_trywrlock.c
blob: 64d9d3121a70989b01cbb5a1324e131765d72a60 (plain) (blame)
1
2
3
4
5
6
7
8
9
#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);
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月07日 15:41:47 +0000

AltStyle によって変換されたページ (->オリジナル) /