aboutsummaryrefslogtreecommitdiffstats
path: root/src/threadpool.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-03-02 10:14:01 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-03-02 10:14:01 -0500
commite879b257b9512816f2ff579a7444fe600a74ed91 (patch)
tree0db242513a0851e0985f7d55ae4cd75e14a91b4e /src/threadpool.cpp
parent47f8aa5b312a5ef671e83322bcbe201a034f84c0 (diff)
better make system
Diffstat (limited to 'src/threadpool.cpp')
-rw-r--r--src/threadpool.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/threadpool.cpp b/src/threadpool.cpp
index d49217d..619f002 100644
--- a/src/threadpool.cpp
+++ b/src/threadpool.cpp
@@ -1,5 +1,9 @@
#include "threadpool.h"
+/**
+ * Stolen from some guy.
+ */
+
// Constructor.
ThreadPool::ThreadPool(int threads) :
terminate(false),
@@ -92,4 +96,4 @@ ThreadPool::~ThreadPool()
{
ShutDown();
}
-} \ No newline at end of file
+}