1

update demos

This commit is contained in:
2022-07-22 02:34:15 +02:00
parent 4327789db6
commit 4bd216b594
8 changed files with 12 additions and 26 deletions

View File

@ -16,17 +16,14 @@ void KeyboardDemo::run() {
kout << "Keyboard Demo: " << endl;
kout.lock();
// kout.lock();
kout.clear();
kout << "Info: Die Keyboard Demo sperrt den Output Stream:\n"
<< " Wenn die Preemption Demo laeuft wird diese also erst\n"
<< " fortfahren wenn die Keyboard Demo wieder beendet ist." << endl;
while (true) {
kout << listener.waitForKeyEvent();
kout.flush();
}
kout.unlock();
// kout.unlock();
scheduler.exit();
}