From 41dcefeb9ffc3ddaa6d578526e1ce48969ee0624 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Tue, 23 Jun 2020 11:52:36 +0200 Subject: [PATCH] Updated source path in dub.json --- dub.json | 3 ++- source/tristanable/garbage.d | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/dub.json b/dub.json index f6c277e..0ce7249 100644 --- a/dub.json +++ b/dub.json @@ -9,5 +9,6 @@ "description": "Tag-based asynchronous messaging framework", "license": "LGPL-3.0", "name": "tristanable", - "targetType": "library" + "targetType": "library", + "sourcePaths": ["source/tristanable"] } \ No newline at end of file diff --git a/source/tristanable/garbage.d b/source/tristanable/garbage.d index 6f2dfe5..208d7b0 100644 --- a/source/tristanable/garbage.d +++ b/source/tristanable/garbage.d @@ -31,6 +31,7 @@ public final class GarbageCollector : Thread requestQueueVariable = cast(Request[]*)manager.getQueueVariable(); } + /* TODO: Add timeout ability */ private void cleaner() { while(true) @@ -38,7 +39,6 @@ public final class GarbageCollector : Thread /* Lock the queue */ manager.lockQueue(); - /* TODO: Add clean up here */ /* Construct a new list */ Request[] newList;