Home
last modified time | relevance | path

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

/freebsd/contrib/ntp/libntp/
H A Dwork_thread.c512 c->thr_table[0].thnd = in start_blocking_thread_internal()
521 if (NULL == c->thr_table[0].thnd) { in start_blocking_thread_internal()
526 if (!SetThreadPriority(c->thr_table[0].thnd, in start_blocking_thread_internal()
531 (*pSetThreadDescription)(c->thr_table[0].thnd, L"ntp_worker");
533 resumed = ResumeThread(c->thr_table[0].thnd);
907 if (c->thread_ref && c->thread_ref->thnd) { in cleanup_after_child()
908 WaitForSingleObject(c->thread_ref->thnd, INFINITE); in cleanup_after_child()
909 INSIST(CloseHandle(c->thread_ref->thnd)); in cleanup_after_child()
910 c->thread_ref->thnd = NULL; in cleanup_after_child()
/freebsd/contrib/ntp/include/
H A Dntp_worker.h47 typedef struct { HANDLE thnd; } thread_type; member