Posts

timeline11 14

C++ Core Guidelines: Rules for Concurrency and Parallelism

/
C++11 is the first C++ standard that deals with concurrency. The basic building block for concurrency…
localVariable

Multithreaded: Summation with Minimal Synchronization

/
Until now, I've used two strategies to summate a std::vector. First, I did the whole math in one thread…
threadLocal

Thread-Local Data

/
By using the keyword thread_local, you define the thread local data. Thread-local can easily be…