Fooling around with design patterns in C++
cpp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Denes Matetelki ab92c991ec
ThreadPool does not have threadnum parameter anymore, you can add as many worker thread as you want later
14 years ago
build CMakeLists.txt cleanup, added minimal unittest, added run_test coeverage tool, added .gitignore file 14 years ago
include ThreadPool does not have threadnum parameter anymore, you can add as many worker thread as you want later 14 years ago
src PThreadWrappers return with the retval of called pthread. Task became an interface. WorkerThread moved to test_ThreadPool.hpp. Thread has stop() and m_isRunning members. ThreadPool is now Task and Thread type independent. No more assertions in PThreadWrappers. Unittests refactored. test dir cleaned up. 14 years ago
test test_threadpool.hpp has been renamed 14 years ago
.gitignore ThreadPool does not have threadnum parameter anymore, you can add as many worker thread as you want later 14 years ago
CMakeLists.txt new classes: concurrentqueue, Task, Thread, ThreadPool, WorkerThread, and some tests. Trying to have cxxtest and cmake 14 years ago
README README added 14 years ago

README

Having fun with design patterns in CPP, pthread wrapper and other util classes.