Searched refs:shnd (Results 1 – 2 of 2) sorted by relevance
64 # define tickle_sem(sh) ReleaseSemaphore((sh->shnd), 1, NULL)401 return obj && osh && (obj->shnd == (HANDLE)osh); in same_os_sema()507 (*addremove_io_semaphore)(c->responses_pending->shnd, FALSE); in start_blocking_thread_internal()704 semptr->shnd = CreateSemaphore(NULL, svini, svmax, NULL); in create_sema()705 if (NULL == semptr->shnd) in create_sema()729 if (obj->shnd) in delete_sema()730 CloseHandle(obj->shnd); in delete_sema()731 obj->shnd = NULL; in delete_sema()795 if (!(sem && sem->shnd)) { in wait_for_sem()814 rc = WaitForSingleObject(sem->shnd, msec); in wait_for_sem()[all …]
48 typedef struct { HANDLE shnd; } sema_type; member