std::shared_mutex::try_lock

std::shared_mutex::try_lock

bool try_lock();
(since C++17)

Tries to lock the mutex. 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 currently locked by any other thread.

If try_lock is called by a thread that already owns the mutex in any mode (shared or exclusive), the behavior is undefined.

Prior unlock() operation on the same mutex synchronizes-with (as defined in std::memory_order) this operation if it returns true. Note that prior lock() does not synchronize with this operation if it returns false.

Parameters

(none).

Return value

true if the lock was acquired successfully, otherwise false.

Exceptions

(none).

Example

See also

locks the mutex, blocks if the mutex is not available
(public member function)
unlocks the mutex
(public member function)
C documentation for mtx_trylock

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/thread/shared_mutex/try_lock

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部