aboutsummaryrefslogtreecommitdiffstats
path: root/src/threadpool.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-03-02 10:11:57 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-03-02 10:11:57 -0500
commitb61bbe703a03d58dc660d05b4bb32f69a4c70436 (patch)
treeb2a37414a4a676399a8cd843b3ad98b6ea0e899e /src/threadpool.cpp
parent0d8508aa2464e1e7e4aacd8f11ec90fc62dd5504 (diff)
parente879b257b9512816f2ff579a7444fe600a74ed91 (diff)
Merge branch 'master' of http://github.com/tcsullivan/gamedev
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
+}