A fast lock-free queue for C++
Sharing data between threads in annoying. Really annoying. If you do it wrong, the data is likely to become corrupted. Even more... more »
Tweet 0 Comments Save Tags: c-and-cpp , reviews
C++11: A cheat sheet—Alex Sinyakov
Want a quick "cheat sheet" overview of what's new in C++11? Alex Sinyakov recently gave a presentation on this topic and has... more »
Tweet 0 Comments Save Tags: c-and-cpp , usability
Serializing in C++ leveraging template metaprogramming (part iii)
The final part of my serialization/deserialization approach. Include a comparison (in release mode -O3) with the boost::serialization... more »
Tweet 0 Comments Save Tags: c-and-cpp , open source