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

@ -5,7 +5,6 @@ void ArrayDemo::run() {
bse::Array<int, 10> arr2 {};
bse::Array<Thread*, 10> arr3 {};
kout.lock();
kout.clear();
kout << "Adding..." << endl;
@ -36,6 +35,5 @@ void ArrayDemo::run() {
// arr1.swap(arr3); // Not possible as type/size has to match
kout.unlock();
scheduler.exit();
}