1

remove semaphore from cga_stream

This commit is contained in:
2022-07-22 02:56:14 +02:00
parent 3540604ec7
commit 8612587e65
9 changed files with 13 additions and 39 deletions

View File

@ -11,7 +11,6 @@ void print(bse::Vector<int> list) {
void VectorDemo::run() {
bse::Vector<int> list;
kout.lock();
kout.clear();
kout << "Initial list size: " << dec << list.size() << endl;
@ -103,6 +102,5 @@ void VectorDemo::run() {
kout << "List contains element: " << dec << i << endl;
}
kout.unlock();
scheduler.exit();
}