OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CSemaphore
(Results
1 - 4
of
4
) sorted by null
/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);
Threads.c
67
WRes Semaphore_Create(
CSemaphore
*p, UInt32 initCount, UInt32 maxCount)
73
static WRes Semaphore_Release(
CSemaphore
*p, LONG releaseCount, LONG *previousCount)
75
WRes Semaphore_ReleaseN(
CSemaphore
*p, UInt32 num)
77
WRes Semaphore_Release1(
CSemaphore
*p) { return Semaphore_ReleaseN(p, 1); }
LzFindMt.h
31
CSemaphore
freeSemaphore;
32
CSemaphore
filledSemaphore;
/external/lzma/CPP/Windows/
Synchronization.h
126
class
CSemaphore
128
::
CSemaphore
_object;
130
CSemaphore
() { Semaphore_Construct(&_object); }
131
~
CSemaphore
() { Close(); }
Completed in 215 milliseconds