1

adapt to scheduler rework

This commit is contained in:
2022-07-21 20:36:12 +02:00
parent 2ac36cda83
commit 017f7de650
13 changed files with 59 additions and 53 deletions

View File

@ -20,7 +20,7 @@ private:
Semaphore(const Semaphore& copy) = delete; // Verhindere Kopieren
// Queue fuer wartende Threads.
bse::Vector<Thread*> waitQueue;
bse::Vector<unsigned int> wait_queue;
SpinLock lock;
int counter;