本文主要是介绍C++ timed_mutex,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include <iostream>
#include <thread>
#include <mutex>
std::timed_mutex mutex;
void mythread()
{
std::chrono::milliseconds timeout(100); //100ms
std::chrono::milliseconds sleep(100);
while(true)
{
//if(mutex.try_lock_for(timeout))
if(mutex.try_lock_until(std::chrono::steady_clock::now() + timeout))
{
std::cout << "try_lock_for" << std::endl;
mutex.unlock();
}
else
{
std::this_thread::sleep_for(sleep);
}
}
}
int main()
{
std::thread t(mythread);
t.join();
return 0;
}
$ g++ timed_mutex.cpp -std=c++11 -pthread
$ ./a.out
try_lock_for
try_lock_for
这篇关于C++ timed_mutex的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!