Thread support library

From cppreference.com
< cpp
 
 
Thread support library
Threads
(C++11)
this_thread namespace
(C++11)
(C++11)
(C++11)
(C++11)
Mutual exclusion
(C++11)
(C++11)
Generic lock management
(C++11)
(C++11)
(C++14)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
Condition variables
(C++11)
Futures
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
 

C++ includes built-in support for threads, mutual exclusion, condition variables, and futures.

Contents

[edit] Threads

Threads enable programs to execute across several processor cores.

Defined in header <thread>
(C++11)
manages a separate thread
(class)
Functions managing the current thread
Defined in namespace this_thread
(C++11)
suggests that the implementation reschedule execution of threads
(function)
(C++11)
returns the thread id of the current thread
(function)
(C++11)
stops the execution of the current thread for a specified time duration
(function)
(C++11)
stops the execution of the current thread until a specified time point
(function)

[edit] Mutual exclusion

Mutual exclusion algorithms prevent multiple threads from simultaneously accessing shared resources. This prevents data races and provides support for synchronization between threads.

Defined in header <mutex>
(C++11)
provides basic mutual exclusion facility
(class)
(C++11)
provides mutual exclusion facility which implements locking with a timeout
(class)
provides mutual exclusion facility which can be locked recursively by the same thread
(class)
provides mutual exclusion facility which can be locked recursively
by the same thread and implements locking with a timeout
(class)
Defined in header <shared_mutex>
provides shared mutual exclusion facility
(class)
Generic mutex management
Defined in header <mutex>
(C++11)
implements a strictly scope-based mutex ownership wrapper
(class template)
(C++11)
implements movable mutex ownership wrapper
(class template)
(C++14)
implements movable shared mutex ownership wrapper
(class template)
tag type used to specify locking strategy
(class)
(C++11)(C++11)(C++11)
tag constants used to specify locking strategy
(constant)
Generic locking algorithms
(C++11)
attempts to obtain ownership of mutexes via repeated calls to try_lock
(function template)
(C++11)
locks specified mutexes, blocks if any are unavailable
(function template)
Call once
(C++11)
helper object to ensure that call_once invokes the function only once
(class)
(C++11)
invokes a function only once even if called from multiple threads
(function template)

[edit] Condition variables

A condition variable is a synchronization primitive that allows multiple threads to communicate with each other. It allows some number of threads to wait (possibly with a timeout) for notification from another thread that they may proceed. A condition variable is always associated with a mutex.

Defined in header <condition_variable>
provides a condition variable associated with a std::unique_lock
(class)
provides a condition variable associated with any lock type
(class)
schedules a call to notify_all to be invoked when this thread is completely finished
(function)
(C++11)
lists the possible results of timed waits on condition variables
(enum)

[edit] Futures

The standard library provides facilities to obtain values that are returned and to catch exceptions that are thrown by asynchronous tasks (i.e. functions launched in separate threads). These values are communicated in a shared state, in which the asynchronous task may write its return value or store an exception, and which may be examined, waited for, and otherwise manipulated by other threads that hold instances of std::future or std::shared_future that reference that shared state.

Defined in header <future>
(C++11)
stores a value for asynchronous retrieval
(class template)
packages a function to store its return value for asynchronous retrieval
(class template)
(C++11)
waits for a value that is set asynchronously
(class template)
waits for a value (possibly referenced by other futures) that is set asynchronously
(class template)
(C++11)
runs a function asynchronously (potentially in a new thread) and returns a std::future that will hold the result
(function template)
(C++11)
specifies the launch policy for std::async
(enum)
specifies the results of timed waits performed on std::future and std::shared_future
(enum)
Future errors
(C++11)
reports an error related to futures or promises
(class)
identifies the future error category
(function)
(C++11)
identifies the future error codes
(enum)

[edit] See also

C documentation for Thread support library