Sandbox for C++ concurrency stuff.
Mostly inspired by C++ Concurrency in Action (a must have).
Lock based queues defined in include/apricot/queue.hpp.
(The namespace name "apricot" was a random choice.)
These exercise the queues in various ways
- demo0 - Queue0 with
std::future - demo1 - Queue1 with
std::future - demo2 - Queue1 with
std::packaged_task - tdemo - Interruptible thread (in progress)
- thread_local_app - demo of
thread_localstorage