gpt4 book ai didi

c++ - Clang ThreadSanitizer : unlock of an unlocked mutex,和一个原子正在创建数据争用

转载 作者:行者123 更新时间:2023-12-01 14:55:14 25 4
gpt4 key购买 nike

我正在使用ThreadSanitizer进行线程分析,并且收到一条警告,该警告使我对互斥锁的工作方式的理解非常困惑。我在Debian Stretch上使用gcc 6.3。

在一个类中,在一个线程中,我有:

auto MyPtr = std::make_shared<MyClass>(...);

在另一个线程调用的另一个地方,我有:
if(MyPtr.get()) {...}

ThreadSanitizer警告我有关竞争的情况,这很棒。所以我通过以下方法解决了这个问题:
std::unique_lock<decltype(MyMutex)> lg(MyMutex); //MyMutex is std::mutex
auto MyPtr = std::make_shared<...>(...);
lg.unlock();

还有另一个地方:
std::unique_lock<decltype(MyMutex)> lg(MyMutex);
if(MyPtr.get()) {...}
// mutex unlocks at the end of the function, which is like after another if-condition.

现在数据竞争已经过去,ThreadSanitizer说互斥锁被“两次”解锁了。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
WARNING: ThreadSanitizer: unlock of an unlocked mutex (or by a wrong thread)

它指向 unlock()调用+其他函数的结尾。

互斥锁如何解锁两次? 有人可以解释吗?

现在,由于这让我头疼,所以我决定改为这样做:
std::shared_ptr<MyClass> MyPtr; //in the class definition
std::atomic_store(&MyPtr, std::make_shared<MyClass>(...));

现在,我收到了数据竞赛投诉:
WARNING: ThreadSanitizer: data race

那我使用ThreadSanitizer错了吗?有人可以解释这是怎么回事吗?

最佳答案

我从来没有想过互斥锁问题,但是我可以通过使其他负载成为原子来摆脱与原子的数据争用:

if(std::atomic_load(&MyPtr).get()) {...}

关于c++ - Clang ThreadSanitizer : unlock of an unlocked mutex,和一个原子正在创建数据争用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45218847/

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