Searched defs:LOCK (Results 1 – 1 of 1) sorted by relevance
12 #define __LOCK_INIT(CLASS,LOCK) CLASS _LOCK_T LOCK = 0; argument13 #define __LOCK_INIT_RECURSIVE(CLASS,LOCK) __LOCK_INIT(CLASS,LOCK) argument15 #define __lock_init(LOCK) LOCK = 0 argument16 #define __lock_init_recursive(LOCK) LOCK = 0 argument17 #define __lock_close(LOCK) ((void)0) argument18 #define __lock_close_recursive(LOCK) ((void) 0) argument19 #define __lock_acquire(LOCK) __gcn_lock_acquire (&LOCK) argument20 #define __lock_acquire_recursive(LOCK) \ argument22 #define __lock_try_acquire(LOCK) __gcn_try_lock_acquire (&LOCK) argument23 #define __lock_try_acquire_recursive(LOCK) \ argument[all …]