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::shared_timed_mutex::try_lock_shared(3) C++ Standard Libary std::shared_timed_mutex::try_lock_shared(3)

std::shared_timed_mutex::try_lock_shared - std::shared_timed_mutex::try_lock_shared


bool try_lock_shared(); (since C++14)


Tries to lock the mutex in shared mode. Returns immediately. On successful lock
acquisition returns true, otherwise returns false.


This function is allowed to fail spuriously and return false even if the mutex is
not currenly exclusively locked by any other thread.


Prior unlock() operation on the same mutex synchronizes-with (as defined in
std::memory_order) this operation if it returns true.


The behavior is undefined if the calling thread already owns the mutex in any mode.


(none)


true if the lock was acquired successfully, otherwise false.


Throws nothing.


This section is incomplete
Reason: no example


lock locks the mutex, blocks if the mutex is not available
(public member function)
try_lock tries to lock the mutex, returns if the mutex is not available
(public member function)
unlock_shared unlocks the mutex (shared ownership)
(public member function)

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.