StuBS
|
syscall interface for keyboard. More...
#include <guarded_keyboard.h>
Public Member Functions | |
Key | getKey () |
Application interface to retrieve a Key. | |
Public Member Functions inherited from Keyboard | |
Keyboard () | |
Constructor. | |
void | plugin () |
Initialization of the keyboard. | |
bool | prologue () override |
Prologue of keyboard interrupts. | |
void | epilogue () override |
Epilogue of keyboard interrupts. | |
Key | getKey () |
Application interface to retrieve a Key. | |
Public Member Functions inherited from Gate | |
Gate () | |
Constructor. | |
virtual | ~Gate () |
Destructor. | |
syscall interface for keyboard.
Guarded interface to the Keyboard used by user applications.
Implements the system call interface for class Keyboard. 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.
|
inline |
Application interface to retrieve a Key.
This method returns the last pressed key (as an Key object). If no key has been pressed, the calling application thread is blocked until a key is available – this is achieved by using a Semaphore.