sljitUtils.c | 71 static HANDLE allocator_mutex = 0; variable in typeref:typename:HANDLE 76 if (!allocator_mutex) 77 allocator_mutex = CreateMutex(NULL, TRUE, NULL); 79 WaitForSingleObject(allocator_mutex, INFINITE); 84 ReleaseMutex(allocator_mutex); 133 static pthread_mutex_t allocator_mutex = PTHREAD_MUTEX_INITIALIZER; variable in typeref:typename:pthread_mutex_t 137 pthread_mutex_lock(&allocator_mutex); 142 pthread_mutex_unlock(&allocator_mutex);
|