Lines Matching defs:l

47 		#define	RWLock_Init(l)		InitializeSRWLock(&(l))  argument
48 #define RWLock_RdLock(l) AcquireSRWLockShared(&(l)) argument
49 #define RWLock_WrLock(l) AcquireSRWLockExclusive(&(l)) argument
50 #define RWLock_UnRLock(l) ReleaseSRWLockShared(&(l)) argument
51 #define RWLock_UnWLock(l) ReleaseSRWLockExclusive(&(l)) argument
52 #define RWLock_Destroy(l) argument
56 #define RWLock_Init(l) CRITICAL_SECTION_INIT((l), 1024) argument
57 #define RWLock_RdLock(l) ENTER_CRITICAL_SECTION(l) argument
58 #define RWLock_WrLock(l) ENTER_CRITICAL_SECTION(l) argument
59 #define RWLock_UnRLock(l) LEAVE_CRITICAL_SECTION(l) argument
60 #define RWLock_UnWLock(l) LEAVE_CRITICAL_SECTION(l) argument
61 #define RWLock_Destroy(l) DELETE_CRITICAL_SECTION(l) argument
67 #define RWLock_Init(l) pthread_rwlock_init(&(l), NULL) argument
68 #define RWLock_RdLock(l) pthread_rwlock_rdlock(&(l)) argument
69 #define RWLock_WrLock(l) pthread_rwlock_wrlock(&(l)) argument
70 #define RWLock_UnRLock(l) pthread_rwlock_unlock(&(l)) argument
71 #define RWLock_UnWLock(l) pthread_rwlock_unlock(&(l)) argument
72 #define RWLock_Destroy(l) pthread_rwlock_destroy(&(l)) argument
74 #define RWLock_Init(l) (pthread_mutex_init(&(l), NULL)) argument
75 #define RWLock_RdLock(l) (pthread_mutex_lock(&(l))) argument
76 #define RWLock_WrLock(l) (pthread_mutex_lock(&(l))) argument
77 #define RWLock_UnRLock(l) (pthread_mutex_unlock(&(l))) argument
78 #define RWLock_UnWLock(l) (pthread_mutex_unlock(&(l))) argument
79 #define RWLock_Destroy(l) (pthread_mutex_destroy(&(l))) argument