1

synchronize textheavy demos

This commit is contained in:
2022-07-17 01:27:22 +02:00
parent b158f98639
commit e7985f4270
5 changed files with 19 additions and 17 deletions

View File

@ -11,6 +11,8 @@
#include "user/demo/HeapDemo.h"
void HeapDemo::run() {
kout.lock();
kout.clear();
kout << "HEAP_DEMO ===================================================================" << endl;
/* hier muss Code eingefuegt werden */
@ -70,6 +72,7 @@ void HeapDemo::run() {
allocator.dump_free_memory();
kout << "HEAP_DEMO END ===============================================================" << endl;
kout.unlock();
scheduler.exit();
}