Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Demutls.c52 static pthread_mutex_t emutls_mutex = PTHREAD_MUTEX_INITIALIZER; variable
128 static __inline void emutls_lock(void) { pthread_mutex_lock(&emutls_mutex); } in emutls_lock()
130 static __inline void emutls_unlock(void) { pthread_mutex_unlock(&emutls_mutex); } in emutls_unlock()
139 static LPCRITICAL_SECTION emutls_mutex; variable
173 if (emutls_mutex) { in emutls_exit()
174 DeleteCriticalSection(emutls_mutex); in emutls_exit()
175 _aligned_free(emutls_mutex); in emutls_exit()
176 emutls_mutex = NULL; in emutls_exit()
189 emutls_mutex = in emutls_init()
191 if (!emutls_mutex) { in emutls_init()
[all …]