C++
Rekurencyjny Mutex
Szukaj…
std :: recursive_mutex
Rekursywny muteks pozwala rekurencyjnie blokować zasób - do nieokreślonego limitu.
Jest na to bardzo niewiele uzasadnień rzeczywistych. Niektóre złożone implementacje mogą wymagać wywołania przeciążonej kopii funkcji bez zwalniania blokady.
std::atomic_int temp{0};
std::recursive_mutex _mutex;
//launch_deferred launches asynchronous tasks on the same thread id
auto future1 = std::async(
std::launch::deferred,
[&]()
{
std::cout << std::this_thread::get_id() << std::endl;
std::this_thread::sleep_for(std::chrono::seconds(3));
std::unique_lock<std::recursive_mutex> lock( _mutex);
temp=0;
});
auto future2 = std::async(
std::launch::deferred,
[&]()
{
std::cout << std::this_thread::get_id() << std::endl;
while ( true )
{
std::this_thread::sleep_for(std::chrono::milliseconds(1));
std::unique_lock<std::recursive_mutex> lock( _mutex, std::try_to_lock);
if ( temp < INT_MAX )
temp++;
cout << temp << endl;
}
});
future1.get();
future2.get();
Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow