Lines Matching full:acquire_lock
1798 and at least INITIAL_LOCK, DESTROY_LOCK, ACQUIRE_LOCK, RELEASE_LOCK
1817 /* #define ACQUIRE_LOCK(lk) ... */
1891 #define ACQUIRE_LOCK(sl) (CAS_LOCK(sl)? spin_acquire_lock(sl) : 0)
1968 #define ACQUIRE_LOCK(lk) recursive_acquire_lock(lk)
1975 #define ACQUIRE_LOCK(lk) (EnterCriticalSection(lk), 0)
2004 #define ACQUIRE_LOCK(lk) pthread_mutex_lock(lk)
2038 #define ACQUIRE_MALLOC_GLOBAL_LOCK() ACQUIRE_LOCK(&malloc_global_mutex);
2743 #define PREACTION(M) ((use_lock(M))? ACQUIRE_LOCK(&(M)->mutex) : 0)
3095 static void pre_fork(void) { ACQUIRE_LOCK(&(gm)->mutex); }