Lines Matching defs:lck
598 #define THR_UMUTEX_TRYLOCK(thrd, lck) \
599 _thr_umutex_trylock((lck), TID(thrd))
601 #define THR_UMUTEX_LOCK(thrd, lck) \
602 _thr_umutex_lock((lck), TID(thrd))
604 #define THR_UMUTEX_TIMEDLOCK(thrd, lck, timo) \
605 _thr_umutex_timedlock((lck), TID(thrd), (timo))
607 #define THR_UMUTEX_UNLOCK(thrd, lck) \
608 _thr_umutex_unlock((lck), TID(thrd))
610 #define THR_LOCK_ACQUIRE(thrd, lck) \
613 _thr_umutex_lock(lck, TID(thrd)); \
616 #define THR_LOCK_ACQUIRE_SPIN(thrd, lck) \
619 _thr_umutex_lock_spin(lck, TID(thrd)); \
632 #define THR_LOCK_RELEASE(thrd, lck) \
635 _thr_umutex_unlock((lck), TID(thrd)); \
1005 void __thr_spinunlock(struct _spinlock *lck);
1006 void __thr_spinlock(struct _spinlock *lck);