38#ifndef _RTEMS_POSIX_RWLOCKIMPL_H
39#define _RTEMS_POSIX_RWLOCKIMPL_H
50#define POSIX_RWLOCK_MAGIC 0x9621dabdUL
58 pthread_rwlock_t *rwlock
66#define POSIX_RWLOCK_VALIDATE_OBJECT( rw ) \
68 if ( ( rw ) == NULL ) { \
71 if ( ( (uintptr_t) ( rw ) ^ POSIX_RWLOCK_MAGIC ) != ( rw )->flags ) { \
72 if ( !_POSIX_RWLock_Auto_initialization( rw ) ) { \
This header file provides interfaces of the Read-Write Lock which are only used by the implementation...
POSIX Threads Private Support.
Definition: corerwlockimpl.h:94
Definition: rwlockimpl.h:52