GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::condition_variable_any(3) C++ Standard Libary std::condition_variable_any(3)

std::condition_variable_any - std::condition_variable_any


Defined in header <condition_variable>
class condition_variable_any; (since C++11)


The condition_variable_any class is a generalization of std::condition_variable.
Whereas std::condition_variable works only on std::unique_lock<std::mutex>,
condition_variable_any can operate on any lock that meets the BasicLockable
requirements.


See std::condition_variable for the description of the semantics of condition
variables.


The class std::condition_variable_any is a StandardLayoutType. It is not
CopyConstructible, MoveConstructible, CopyAssignable, or MoveAssignable.


If the lock is std::unique_lock<std::mutex>, std::condition_variable may provide
better performance.


constructor constructs the object
(public member function)
destructor destructs the object
(public member function)
operator= not copy-assignable
[deleted] (public member function)


notify_one notifies one waiting thread
(public member function)
notify_all notifies all waiting threads
(public member function)


wait blocks the current thread until the condition variable is woken up
(public member function)
blocks the current thread until the condition variable is woken up or
wait_for after the specified timeout duration
(public member function)
blocks the current thread until the condition variable is woken up or
wait_until until specified time point has been reached
(public member function)


std::condition_variable_any can be used with std::shared_lock in order to wait on a
std::shared_mutex in shared ownership mode.


A possible use for std::condition_variable_any with custom Lockable types is to
provide convenient interruptible waits: the custom lock operation would both lock
the associated mutex as expected, and also perform the necessary setup to notify
this condition variable when the interrupting signal is received.^[1]


condition_variable provides a condition variable associated with a std::unique_lock
(C++11) (class)


1. ↑ Anthony Williams (2012, 1st ed./ 2019, 2nd ed.), “C++ Concurrency in
Action”, 9.2.4 “Interrupting a wait on std::condition_variable_any”.

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.