Are function static variables thread-safe in GCC?(GCC中的函数静态变量是线程安全的吗?)
问题描述
在示例代码中
void foo()
{
static Bar b;
...
}
用 GCC 编译是否保证 b
将以线程安全的方式创建和初始化?
compiled with GCC is it guaranteed that b
will be created and initialized in a thread-safe manner ?
在 gcc 的手册页中,找到 -fno-threadsafe-statics 命令行选项:
In gcc's man page, found the -fno-threadsafe-statics command line option:
不要发出额外的代码来使用C++ ABI 中指定的例程本地线程安全初始化静力学.您可以使用此选项在代码中稍微减少代码大小不需要是线程安全的.
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.
这是否意味着本地静态变量在默认情况下使用 GCC 是线程安全的?所以没有理由进行明确的保护,例如使用
pthread_mutex_lock/unlock
?
如何编写可移植代码 - 如何检查编译器是否会添加其保护?还是关闭GCC的这个功能更好?
How to write portable code - how to check if compiler will add its guards ? Or is it better to turn off this feature of GCC ?
推荐答案
不,这意味着本地
static
的初始化是线程安全的.
您肯定希望启用此功能.本地 static
的线程安全初始化非常重要.如果您通常需要对本地 static
进行线程安全访问,那么您需要自己添加适当的保护.
You definitely want to leave this feature enabled. Thread-safe initialization of local static
s is very important. If you need generally thread-safe access to local static
s then you will need to add the appropriate guards yourself.
这篇关于GCC中的函数静态变量是线程安全的吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:GCC中的函数静态变量是线程安全的吗?
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01