C++11 header only thread-safe STL containers
- thread-safe STL containers and practically any other type
- deadlock avoidance algorithm info
- initial support of transactional memory info
- implemented as reference counting objects
- usage of recursive_mutex per default
- access through operator->()
- custom type should provide move constructor / operator=
- g++ -Wall --std=c++11 -O3 -s test.cpp -o test -lpthread
- -lpthread may needed due to gcc bug