
Guarded interface to Semaphore objects used by user applications. More...
#include <syscall/guarded_semaphore.h>
Public Member Functions | |
GuardedSemaphore (int c) | |
The constructor passes the parameters to the base-class constructor. More... | |
void | p () |
Wait for access to the critical area. More... | |
void | v () |
Leave the critical area. More... | |
![]() | |
![]() | |
![]() |
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.
|
inlineexplicit |
The constructor passes the parameters to the base-class constructor.
|
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.
|
inline |