gpt4 book ai didi

c++ - 我应该修改什么以防止 C++ 线程上的死锁

转载 作者:搜寻专家 更新时间:2023-10-31 00:59:23 25 4
gpt4 key购买 nike

这是我的源代码:

#include "stdio.h"
#include <stdlib.h>
#include <string.h>
#include "thread"
#include "mutex"

int count0=0 ,count1 =0;
std::mutex main_thread;
std::unique_lock<std::mutex> lck(main_thread, std::defer_lock);

void Function00(long millisecond){

while (true){

lck.lock();
count1++;
printf("count0:%d count1:%d \n",count0,count1);
lck.unlock();
std::this_thread::sleep_for(std::chrono::milliseconds(millisecond));

}
}

void Function01(){

std::thread th(Function00, 1000);//count per 1 s

do{
lck.lock();
count0++;
lck.unlock();
std::this_thread::sleep_for(std::chrono::milliseconds(500));//count per 0.5 s
} while (1);

}



int main(int argc, char *argv[])
{
Function01();


return 0;
}

然后我使用命令构建我的 .o 文件:

g++ -std=c++11 -pthread testa.cpp -o a.o

但是,它显示错误:

terminate called after throwing an instance of 'std::system_error'
what(): Resource deadlock avoided
Aborted

我感到困惑,不知道如何解决它,所以我在 Microsoft VS2013 中尝试,它运行没有错误...我对此感到困惑。这是linux中的问题吗?我应该修改什么来防止死锁?

最佳答案

unique_lock 不能被锁定两次,如果你想在两个线程上锁定一个互斥锁,使其中一个线程阻塞,你需要使用两个 unique_lock

void Function00(long millisecond){

while (true){

{
std::unique_lock<std::mutex> lck(main_thread);
count1++;
printf("count0:%d count1:%d \n",count0,count1);
}
std::this_thread::sleep_for(std::chrono::milliseconds(millisecond));

}
}

void Function01(){

std::thread th(Function00, 1000);//count per 1 s

do{
{
std::unique_lock<std::mutex> lck(main_thread);
count0++;
}
std::this_thread::sleep_for(std::chrono::milliseconds(500));//count per 0.5 s
} while (1);

}

关于c++ - 我应该修改什么以防止 C++ 线程上的死锁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33452361/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com