1#ifndef Cpl_System_Semaphore_h_
2#define Cpl_System_Semaphore_h_
15#include "colony_map.h"
20#define Cpl_System_Sema_T Cpl_System_Sema_T_MAP
54 void wait(
void )
noexcept;
#define Cpl_System_Sema_T
Defer the definition of the a raw semaphore type to the application's 'platform'.
Definition Semaphore.h:20
This class defines methods for initializing the Colony.Core class library and other startup/init acti...
Definition Api.h:29
This semaphore class defines the interface for a Counting Semaphore.
Definition Semaphore.h:37
bool timedWait(unsigned long timeout) noexcept
This method is the same as wait(), except that 'timeout' specifies the maximum amount of time,...
void waitInRealTime(void) noexcept
Helper method for supporting SimTicks and 'real' tick in the same build.
bool timedWaitInRealTime(unsigned long timeout) noexcept
Helper method for supporting SimTicks and 'real' tick in the same build.
void wait(void) noexcept
This method causes the current thread to block and wait till the semaphore is signaled/set.
int su_signal(void) noexcept
Signable API
int signal(void) noexcept
Signable API
Cpl_System_Sema_T m_sema
Raw Semaphore handle/instance/pointer.
Definition Semaphore.h:83
bool tryWait(void) noexcept
This method is the same as wait(), except that if the semaphore count is zero, the method returns imm...
Semaphore(unsigned initialCount=0)
Constructor.
This abstract class defines the interface by which a client can cause an object that is waiting-on-a-...
Definition Signable.h:28
This class define the interface to provide a simulates system tick (in milliseconds) to the applicati...
Definition SimTick.h:236
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20