Guarded interface to Semaphore objects used by user applications.
More...
#include <syscall/guarded_semaphore.h>
|
| GuardedSemaphore (unsigned c) |
| The constructor passes the parameters to the base-class constructor.
|
|
void | p () |
| Wait for access to the critical area.
|
|
void | v () |
| Leave the critical area.
|
|
Guarded interface to Semaphore objects used by user applications.
Implements the system call interface for class Semaphore. All methods provided by this class are wrappers for the respective method from the base class, which provide additional synchronization by using the class Guarded.
◆ GuardedSemaphore() [1/2]
◆ GuardedSemaphore() [2/2]
GuardedSemaphore::GuardedSemaphore |
( |
unsigned |
c | ) |
|
|
inlineexplicit |
The constructor passes the parameters to the base-class constructor.
- Todo:
- Implement constructor
◆ operator=()
◆ p()
void GuardedSemaphore::p |
( |
| ) |
|
|
inline |
Wait for access to the critical area.
Enter/Wait operation: If the counter is greater than 0, then it is decremented by one. Otherwise the calling thread will be enqueued into the Waitingroom and marked as blocked.
- Todo:
- Implement Method
- Note
- This method is equal to the correspondent method in base class Semaphore, with the only difference that the call will be protected by a Guarded object.
- Todo:
- Implement method
◆ v()
void GuardedSemaphore::v |
( |
| ) |
|
|
inline |
Leave the critical area.
Leave operation: If there are threads in the Waitingroom, wake the first one; otherwise increment the counter by one.
- Todo:
- Implement Method
- Note
- This method is equal to the correspondent method in base class Semaphore, with the only difference that the call will be protected by a Guarded object.
- Todo:
- Implement method
The documentation for this class was generated from the following file: