diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-03-02 10:11:57 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-03-02 10:11:57 -0500 |
commit | b61bbe703a03d58dc660d05b4bb32f69a4c70436 (patch) | |
tree | b2a37414a4a676399a8cd843b3ad98b6ea0e899e /src/threadpool.cpp | |
parent | 0d8508aa2464e1e7e4aacd8f11ec90fc62dd5504 (diff) | |
parent | e879b257b9512816f2ff579a7444fe600a74ed91 (diff) |
Merge branch 'master' of http://github.com/tcsullivan/gamedev
Diffstat (limited to 'src/threadpool.cpp')
-rw-r--r-- | src/threadpool.cpp | 6 |
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 +} |