gpt4 book ai didi

c++ - GCC中的函数静态变量是线程安全的吗?

转载 作者:IT老高 更新时间:2023-10-28 13:22:47 27 4
gpt4 key购买 nike

在示例代码中

void foo()
{
static Bar b;
...
}

GCC 编译是否保证 b 将以线程安全的方式创建和初始化?

在 gcc 的手册页中,找到 -fno-threadsafe-statics 命令行选项:

Do not emit the extra code to use the routines specified in the C++ ABI for thread-safe initialization of local statics. You can use this option to reduce code size slightly in code that doesn't need to be thread-safe.

  1. 这是否意味着本地静态变量在默认情况下使用 GCC 是线程安全的?所以没有理由进行明确的保护,例如使用 pthread_mutex_lock/unlock ?

  2. 如何编写可移植代码 - 如何检查编译器是否会添加其保护?还是关闭GCC的这个功能更好?

最佳答案

  1. 不,这意味着本地static初始化是线程安全的。

  2. 您肯定希望启用此功能。本地 static 的线程安全初始化非常重要。如果您通常需要对本地 static 进行线程安全访问,那么您需要自己添加适当的保护。

关于c++ - GCC中的函数静态变量是线程安全的吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1270927/

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