Searched refs:mutex_handle_value (Results 1 – 1 of 1) sorted by relevance
145 HANDLE mutex_handle_value; in ithread_mutex_init() local151 mutex_handle_value = CreateSemaphore(NULL, 1, 1, NULL); in ithread_mutex_init()152 *ppv_mutex_handle = mutex_handle_value; in ithread_mutex_init()159 HANDLE mutex_handle_value; in ithread_mutex_destroy() local165 mutex_handle_value = *ppv_mutex_handle; in ithread_mutex_destroy()166 CloseHandle(mutex_handle_value); in ithread_mutex_destroy()173 HANDLE mutex_handle_value; in ithread_mutex_lock() local180 mutex_handle_value = *ppv_mutex_handle; in ithread_mutex_lock()181 result = WaitForSingleObject(mutex_handle_value, INFINITE); in ithread_mutex_lock()193 HANDLE mutex_handle_value; in ithread_mutex_unlock() local[all …]