42. Threads and Tasks
Keep Calm and Carry On.
– English slogan
• Threads
Identity; Construction; Destruction; join(); detach(); Namespace this_thread; Killing a thread; thread_local Data
Mutexes; Multiple Locks; call_once(); Condition Variables
future and promise; promise; packaged_task; future; shared_future; async(); A Parallel find() Example
• Advice
42.1. Introduction
Concurrency – the execution of several tasks simultaneously – is widely used to improve throughput (by using several processors for a single computation) or to improve responsiveness (by allowing one part of a program to progress while another is waiting for a response).
The C++ standard support for concurrency ...
Get The C++ Programming Language, 4th Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.