Home
last modified time | relevance | path

Searched refs:allocator_mutex (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/sys/external/bsd/sljit/dist/sljit_src/
H A DsljitUtils.c71 static HANDLE allocator_mutex = 0; variable
76 if (!allocator_mutex) in allocator_grab_lock()
77 allocator_mutex = CreateMutex(NULL, TRUE, NULL); in allocator_grab_lock()
79 WaitForSingleObject(allocator_mutex, INFINITE); in allocator_grab_lock()
84 ReleaseMutex(allocator_mutex); in allocator_release_lock()
133 static pthread_mutex_t allocator_mutex = PTHREAD_MUTEX_INITIALIZER; variable
137 pthread_mutex_lock(&allocator_mutex); in allocator_grab_lock()
142 pthread_mutex_unlock(&allocator_mutex); in allocator_release_lock()