OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CSemaphore
(Results
1 - 2
of
2
) sorted by null
/external/lzma/CPP/Windows/
Synchronization.h
126
class
CSemaphore
128
::
CSemaphore
_object;
130
CSemaphore
() { Semaphore_Construct(&_object); }
131
~
CSemaphore
() { Close(); }
/external/lzma/C/
Threads.h
51
typedef HANDLE
CSemaphore
;
55
WRes Semaphore_Create(
CSemaphore
*p, UInt32 initCount, UInt32 maxCount);
56
WRes Semaphore_ReleaseN(
CSemaphore
*p, UInt32 num);
57
WRes Semaphore_Release1(
CSemaphore
*p);
Completed in 450 milliseconds