Personal all-purpose utility library
Go to file
Doyle Thai 19c427d756 Add opt. RAII-isms for destruction, fix thread bug
Thread Bug: Incorrectly using && operator for while
(DqnJobQueue_TryExecuteNextJob(queue) &&
!DqnJobQueue_AllJobsComplete(queue)) causing it to prematurely exit if
the main thread has completed its work before other threads have
completed the remainder. Should be using an || operator, so instead
creating a helper function which encapsulates this functionality.
2017-06-24 14:59:48 +10:00
misc Add opt. RAII-isms for destruction, fix thread bug 2017-06-24 14:59:48 +10:00
tests Fix compile and warnings on MSVC 2017-06-21 19:01:36 +10:00
.clang-format Add better documentation 2017-06-22 14:00:11 +10:00
.gitignore Initial commit 2017-04-09 15:08:31 +10:00
build.bat Add operator overloads to vectors 2017-05-01 16:40:52 +10:00
dqn_unit_test.cpp Add opt. RAII-isms for destruction, fix thread bug 2017-06-24 14:59:48 +10:00
dqn.h Add opt. RAII-isms for destruction, fix thread bug 2017-06-24 14:59:48 +10:00
makefile Add opt. RAII-isms for destruction, fix thread bug 2017-06-24 14:59:48 +10:00