This commit is contained in:
Tristan B. Kildaire 2020-06-23 14:15:45 +02:00
parent bbdf440d6a
commit 2d994d806a
1 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ public final class Manager
watcher = new Watcher(this, endpoint);
/* Create the garbage collector */
//gc = new GarbageCollector(this);
gc = new GarbageCollector(this);
/* Initialize the `requestQueue` mutex */
queueMutex = new Mutex();
@ -140,9 +140,9 @@ public final class Manager
return requestQueue;
}
public ref Request[] getQueueVariable()
public Request[]* getQueueVariable()
{
return requestQueue;
return &requestQueue;
}
public void lockQueue()