1

adapt to new list interface

This commit is contained in:
2022-07-16 18:24:32 +02:00
parent f807558781
commit b454f5d01c
5 changed files with 2 additions and 13 deletions

View File

@ -28,9 +28,7 @@ private:
public:
// Konstruktor: Initialisieren des Semaphorzaehlers
Semaphore(int c) : counter(c) {
waitQueue.init();
}
Semaphore(int c) : counter(c) {}
// 'Passieren': Warten auf das Freiwerden eines kritischen Abschnitts.
void p();