OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CSemaphore
(Results
1 - 4
of
4
) sorted by null
/hardware/samsung_slsi/exynos5/mobicore/daemon/Common/
CSemaphore.cpp
35
#include "
CSemaphore
.h"
39
CSemaphore
::
CSemaphore
(int size) : m_waiters_count(0), m_count(size)
47
CSemaphore
::~
CSemaphore
()
55
void
CSemaphore
::wait()
67
bool
CSemaphore
::wait(int sec)
92
bool
CSemaphore
::wouldWait()
104
void
CSemaphore
::signal()
CSemaphore.h
44
class
CSemaphore
49
CSemaphore
(int size = 0);
51
~
CSemaphore
(void);
/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
41
typedef HANDLE
CSemaphore
;
45
WRes Semaphore_Create(
CSemaphore
*p, UInt32 initCount, UInt32 maxCount);
46
WRes Semaphore_ReleaseN(
CSemaphore
*p, UInt32 num);
47
WRes Semaphore_Release1(
CSemaphore
*p);
Completed in 66 milliseconds