trap

C++ Core Guidelines: More Traps in the Concurrency

/
Concurrency provides many ways to shoot yourself in the foot. The rules for today help you to know these…
gleise

C++ Core Guidelines: Taking Care of your Child Thread

/
When you create a new child thread, you must answer an important question: should you wait for the child…
retriever

C++ Core Guidelines: Sharing Data between Threads

/
If you want to have fun with threads, you should share mutable data between them. To get no data race…
wrench 24261 640

C++ Core Guidelines: Use Tools to Validate your Concurrent Code

/
Today, I'm happy to write about the probably most important C++ Core Guidelines for concurrency rule:…