Use recursive mutex capabilities
This commit is contained in:
parent
7a60a31e0a
commit
384f286f83
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue