std::recursive_timed_mutex::try_lock_until
STD::递归[医]定时[医]互斥::尝试[医]锁[医]直到
template< class Clock, class Duration > bool try_lock_until( const std::chrono::time_point | | (since C++11) |
---|
试图锁定互斥体。块,直到指定timeout_time
已到达或已获得锁,两者以第一位为准。关于成功锁定获取返回true
,否则返回false
...
如果timeout_time
已传递,此函数的行为如下try_lock()
...
钟系在timeout_time
使用,这意味着考虑到时钟的调整。因此,块的最大持续时间可能小于或超过timeout_time - Clock::now()
在呼叫时,取决于调整的方向。该函数也可能阻塞时间超过之后。timeout_time
由于调度或资源争用延迟已到达。
和...一样try_lock()
,则允许此函数伪造失败并返回。false
即使互斥锁之前没有被任何其他线程锁定。timeout_time
...
优先unlock()
对同一个互斥体的操作同步性
中定义的28名ASstd::memory_order
%29如果返回此操作true
...
线程可以调用try_lock_until
在递归互斥体上重复。成功呼叫try_lock_until
增加所有权计数:只有在线程进行匹配次数的调用之后,互斥锁才会释放。unlock
...
所有权的最大级别未指定。打电话给try_lock_until
会回来false
如果超过此数字。
参数
timeout_time | - | maximum time point to block until |
---|
返回值
true
如果成功获取锁,则为false
...
例外
任何由时钟、时间引发的异常[医]在执行%28时钟、时间点和标准库提供的持续时间期间,不要抛出%29。
例
这个例子显示了一个10秒的块。
二次
#include <thread>
#include <iostream>
#include <chrono>
#include <mutex>
std::recursive_timed_mutex test_mutex;
void f()
{
auto now=std::chrono::steady_clock::now(
test_mutex.try_lock_until(now + std::chrono::seconds(10)
std::cout << "hello world\n";
}
int main()
{
std::lock_guard<std::recursive_timed_mutex> l(test_mutex
std::thread t(f
t.join(
}
二次
另见
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) |
try_lock_for | tries to lock the mutex, returns if the mutex has beenunavailable for the specified timeout duration (public member function) |
unlock | unlocks the mutex (public member function) |
c MTX文件[医]时间锁
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。
http://en.cpPreference.com/w/cpp/线程/递归[医]定时[医]互斥/尝试[医]锁[医]直到