![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This semaphore class defines the interface for a Counting Semaphore. More...
This semaphore class defines the interface for a Counting Semaphore.
NOTES:
o The 'max-count' for a Semaphore is platform specific. o The class inherits from 'Signable' which contains/defines the "signal()" methods.
#include <Semaphore.h>
Public Member Functions | |
Semaphore (unsigned initialCount=0) | |
Constructor. | |
~Semaphore () | |
Destructor. | |
void | wait (void) noexcept |
This method causes the current thread to block and wait till the semaphore is signaled/set. | |
bool | timedWait (unsigned long timeout) noexcept |
This method is the same as wait(), except that 'timeout' specifies the maximum amount of time, in milliseconds, will block if the semaphore count is zero. | |
bool | tryWait (void) noexcept |
This method is the same as wait(), except that if the semaphore count is zero, the method returns immediately and has a return code of false. | |
int | signal (void) noexcept |
Signable API | |
int | su_signal (void) noexcept |
Signable API | |
![]() | |
virtual | ~Signable () |
Virtual destructor. | |
![]() | |
bool | insert_ (void *newContainerPtr) |
Helper method to trap when inserting an item in multiple containers. | |
bool | isInContainer_ (const void *containerPtr) const noexcept |
Returns 'true' if the instance is in the specified container. | |
Protected Member Functions | |
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. | |
![]() | |
Item () | |
Constructor. | |
Item (const char *) | |
Constructor used ONLY with the child class MapItem: -->special constructor to allow a Map to be statically allocated. | |
Protected Attributes | |
Cpl_System_Sema_T | m_sema |
Raw Semaphore handle/instance/pointer. | |
Friends | |
class | Api |
Friends(s) | |
class | SimTick |
Additional Inherited Members | |
![]() | |
static void | remove_ (Item *itemPtr) noexcept |
Helper method to do the proper 'clean-up' for the multiple-containers-error-trap when removing an item from a container. | |
![]() | |
void * | m_nextPtr_ |
The link field. | |
void * | m_inListPtr_ |
Debug field. | |
Cpl::System::Semaphore::Semaphore | ( | unsigned | initialCount = 0 | ) |
Constructor.
The semaphore is created with the specified 'initialCount'. A count of zero, will cause an immediate call to 'wait()' to block.
Cpl::System::Semaphore::~Semaphore | ( | ) |
Destructor.
|
virtualnoexcept |
Signable API
Implements Cpl::System::Signable.
|
virtualnoexcept |
Signable API
Implements Cpl::System::Signable.
|
noexcept |
This method is the same as wait(), except that 'timeout' specifies the maximum amount of time, in milliseconds, will block if the semaphore count is zero.
The method return true if the semaphore was signaled (i.e. count > 0); else false is returned if the timeout period expired.
|
protectednoexcept |
Helper method for supporting SimTicks and 'real' tick in the same build.
|
noexcept |
This method is the same as wait(), except that if the semaphore count is zero, the method returns immediately and has a return code of false.
If the semaphore count is greater than zero, the count is decrement and the method returns immediately and has a return code of true.
|
noexcept |
This method causes the current thread to block and wait till the semaphore is signaled/set.
NOTE: Can only be called from a Thread context!
|
protectednoexcept |
Helper method for supporting SimTicks and 'real' tick in the same build.
|
friend |
Friends(s)
|
protected |
Raw Semaphore handle/instance/pointer.