Searched defs:alp (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Arm/machine/
H A Dlock.h61 __cpu_simple_lock_init(__cpu_simple_lock_t *alp) argument
64 *alp = __SIMPLELOCK_UNLOCKED;
68 __cpu_simple_lock(__cpu_simple_lock_t *alp) argument
71 while (__swp(__SIMPLELOCK_LOCKED, alp) != __SIMPLELOCK_UNLOCKED)
76 __cpu_simple_lock_try(__cpu_simple_lock_t *alp) argument
79 return (__swp(__SIMPLELOCK_LOCKED, alp) == __SIMPLELOCK_UNLOCKED);
83 __cpu_simple_unlock(__cpu_simple_lock_t *alp) argument
86 *alp = __SIMPLELOCK_UNLOCKED;

Completed in 46 milliseconds