gpt4 book ai didi

c++ - 除非链接到 pthreads,否则不会出现死锁?

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

为什么除非程序链接到 pthreads,否则创建 std::mutex 死锁实际上不会导致死锁?

以下内容在与 pthreads 库链接时会死锁,如果未链接 pthreads 则不会死锁。已在 gcc 和 clang 上测试。

// clang++ main.cpp -std=c++14 -lpthread
#include <mutex>
int main() {
std::mutex mtx;
mtx.lock();
mtx.lock();
return 0;
}

我知道如果没有线程库,您实际上不需要互斥功能,但是编译器是否知道链接的库?能否以此为基础进行优化?

最佳答案

The following will deadlock when linked with pthreads library and will not deadlock if pthreads is not linked in.

那是因为 std::mutex::lock 的默认实现什么都不做

is the compiler aware of the libraries that are linked in?

否:编译器只是调用std::mutex::lock 并将mtx 的地址传递给它。行为不同的是该函数的实现

更新:

To clarify, the implementation is able to change itself depending on if a library has been linked in? Through a macro?

当编译器完成编译时,宏预处理完成并且不会有任何进一步的影响。

也许最好是演示一下。假设你有:

int main() { return foo(); }

你能说出上面程序的执行结果是什么吗?不,你不能,因为你不知道 foo 的作用。

现在假设我编译以下内容:

// foo.c
int foo() { return 0; }

gcc -c foo.c && ar ruv libfoo.a foo.o
gcc main.o -L. -lfoo

现在您可以知道程序将以 0 返回码退出。

现在假设我还编译了以下内容:

// bar.c
int foo() { abort(); }

gcc -c bar.c && ar ruv libbar.a bar.o

最后,我像这样链接相同的未修改 main.o:

gcc main.o -L. -lbar -lfoo

你能说出生成的程序会做什么吗?

您可以:它会因 SIGABRT 而终止并生成核心转储。

请注意 main.o 没有变化,只有 main.o 链接的库发生了变化。

这与导致您的原始程序根据它是否链接到 libpthread 而表现不同的机制完全相同。

关于c++ - 除非链接到 pthreads,否则不会出现死锁?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43826397/

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