1

add semaphore to cga_stream + use it in demos

This commit is contained in:
2022-07-22 18:12:56 +02:00
parent e3dcadcc3c
commit e56e76ea4e
14 changed files with 39 additions and 13 deletions

View File

@ -11,6 +11,7 @@
#include "user/demo/VectorDemo.h"
void print_demo_menu() {
kout.lock();
kout.clear();
kout << "Demo Menu, press number to start, K to kill:\n"
<< "1 - Text Demo\n"
@ -21,6 +22,7 @@ void print_demo_menu() {
<< "6 - Bluescreen Demo\n"
<< "7 - Preemption Demo\n"
<< endl;
kout.unlock();
}
void MainMenu::run() {