Quantcast
Channel: Learn Modern C++
Viewing all articles
Browse latest Browse all 33

C++ Concurrency 101

$
0
0
Utilizing the potential of multi-core CPUs as found in virtually all modern hardware can only be achieved by writing multi-threaded programs. Code which is multi-threaded allows multiple threads to run through the same piece of code simultaneously, using different logical processors. The way this can be achieved is by allowing each thread to use a… Continue reading C++ Concurrency 101

Viewing all articles
Browse latest Browse all 33

Trending Articles