Searched refs:server_thread (Results 1 – 2 of 2) sorted by relevance
118 } server_thread; member522 if (h->server_thread.t == NULL) in join_server_thread()525 ossl_crypto_mutex_lock(h->server_thread.m); in join_server_thread()526 h->server_thread.stop = 1; in join_server_thread()527 ossl_crypto_condvar_signal(h->server_thread.c); in join_server_thread()528 ossl_crypto_mutex_unlock(h->server_thread.m); in join_server_thread()530 ossl_crypto_thread_native_join(h->server_thread.t, &rv); in join_server_thread()531 ossl_crypto_thread_native_clean(h->server_thread.t); in join_server_thread()532 h->server_thread.t = NULL; in join_server_thread()547 if (h->server_thread.m == NULL || *p_checked_out) in s_lock()[all …]
73 static void *server_thread(void *arg);136 ATF_REQUIRE(pthread_create(&c->thr, NULL, server_thread, c) == 0); in common_init()184 server_thread(void *arg) { in server_thread() function