Home
last modified time | relevance | path

Searched defs:LOCK (Results 1 – 1 of 1) sorted by relevance

/picolibc-latest/newlib/libc/sys/amdgcn/include/sys/
Dlock.h12 #define __LOCK_INIT(CLASS,LOCK) CLASS _LOCK_T LOCK = 0; argument
13 #define __LOCK_INIT_RECURSIVE(CLASS,LOCK) __LOCK_INIT(CLASS,LOCK) argument
15 #define __lock_init(LOCK) LOCK = 0 argument
16 #define __lock_init_recursive(LOCK) LOCK = 0 argument
17 #define __lock_close(LOCK) ((void)0) argument
18 #define __lock_close_recursive(LOCK) ((void) 0) argument
19 #define __lock_acquire(LOCK) __gcn_lock_acquire (&LOCK) argument
20 #define __lock_acquire_recursive(LOCK) \ argument
22 #define __lock_try_acquire(LOCK) __gcn_try_lock_acquire (&LOCK) argument
23 #define __lock_try_acquire_recursive(LOCK) \ argument
[all …]