Home
last modified time | relevance | path

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

/oneTBB/src/tbb/
H A Dsemaphore.cpp34 srwl_or_handle* shptr = (srwl_or_handle*) h_; in init_binsem_using_event() local
35 shptr->h = CreateEventEx( nullptr, nullptr, 0, EVENT_ALL_ACCESS|SEMAPHORE_ALL_ACCESS ); in init_binsem_using_event()
40 srwl_or_handle* shptr = (srwl_or_handle*) h_; in acquire_binsem_using_event() local
41 WaitForSingleObjectEx( shptr->h, INFINITE, FALSE ); in acquire_binsem_using_event()
46 srwl_or_handle* shptr = (srwl_or_handle*) h_; in release_binsem_using_event() local
47 SetEvent( shptr->h ); in release_binsem_using_event()