Home
last modified time | relevance | path

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

/PHP-8.1/TSRM/
H A DTSRM.c605 MUTEX_T mutexp; in tsrm_mutex_alloc() local
608 InitializeCriticalSection(mutexp); in tsrm_mutex_alloc()
611 pthread_mutex_init(mutexp,NULL); in tsrm_mutex_alloc()
616 return( mutexp ); in tsrm_mutex_alloc()
623 if (mutexp) { in tsrm_mutex_free()
625 DeleteCriticalSection(mutexp); in tsrm_mutex_free()
626 free(mutexp); in tsrm_mutex_free()
628 pthread_mutex_destroy(mutexp); in tsrm_mutex_free()
629 free(mutexp); in tsrm_mutex_free()
646 EnterCriticalSection(mutexp); in tsrm_mutex_lock()
[all …]
H A DTSRM.h123 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 14 milliseconds