Home
last modified time | relevance | path

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

/freebsd/contrib/ntp/libntp/
H A Dwork_thread.c64 # define tickle_sem(sh) ReleaseSemaphore((sh->shnd), 1, NULL)
405 return obj && osh && (obj->shnd == (HANDLE)osh);
511 (*addremove_io_semaphore)(c->responses_pending->shnd, FALSE); in start_blocking_thread_internal()
711 semptr->shnd = CreateSemaphore(NULL, svini, svmax, NULL); in create_sema()
712 if (NULL == semptr->shnd) in create_sema()
736 if (obj->shnd) in delete_sema()
737 CloseHandle(obj->shnd); in delete_sema()
738 obj->shnd = NULL; in delete_sema()
802 if (!(sem && sem->shnd)) { in wait_for_sem()
821 rc = WaitForSingleObject(sem->shnd, mse in wait_for_sem()
[all...]
/freebsd/contrib/ntp/include/
H A Dntp_worker.h48 typedef struct { HANDLE shnd; } sema_type; member