Use recursive mutex capabilities

This commit is contained in:
Tristan B. Velloza Kildaire 2021-09-08 13:42:25 +02:00
parent 7a60a31e0a
commit 384f286f83
1 changed files with 2 additions and 2 deletions

View File

@ -96,8 +96,8 @@ public final class Manager
/* Create the new queue with the free id found */
newQueue = new Queue(curGuess);
/* Add the queue */
queues ~= newQueue;
/* Add the queue (recursive mutex) */
addQueue(newQueue);
queuesLock.unlock();