Searched refs:mutexp (Results 1 – 2 of 2) sorted by relevance
579 MUTEX_T mutexp; in tsrm_mutex_alloc() local582 InitializeCriticalSection(mutexp); in tsrm_mutex_alloc()585 pthread_mutex_init(mutexp,NULL); in tsrm_mutex_alloc()590 return( mutexp ); in tsrm_mutex_alloc()597 if (mutexp) { in tsrm_mutex_free()599 DeleteCriticalSection(mutexp); in tsrm_mutex_free()600 free(mutexp); in tsrm_mutex_free()602 pthread_mutex_destroy(mutexp); in tsrm_mutex_free()603 free(mutexp); in tsrm_mutex_free()620 EnterCriticalSection(mutexp); in tsrm_mutex_lock()[all …]
123 TSRM_API void tsrm_mutex_free(MUTEX_T mutexp);124 TSRM_API int tsrm_mutex_lock(MUTEX_T mutexp);125 TSRM_API int tsrm_mutex_unlock(MUTEX_T mutexp);
Completed in 7 milliseconds