C ++为什么静态thread_local对象构造了两次?

时间:2017-11-10 15:48:52

标签: c++ gcc thread-safety mingw-w64 thread-local-storage

此代码:

#include <iostream>
#include <thread>
#include <mutex>

struct Singl{
    Singl(Singl const&) = delete;
    Singl(Singl&&) = delete;

    inline static thread_local bool alive = true;

    Singl(){
        std::cout << "Singl() " << std::this_thread::get_id() << std::endl;
    }
    ~Singl(){
        std::cout << "~Singl() " << std::this_thread::get_id() << std::endl;
        alive = false;
    }
};

static auto& singl(){
    static thread_local Singl i;
    return i;
}

struct URef{
    ~URef(){
        const bool alive = singl().alive;
        std::cout << alive << std::endl;
    }
};


int main() {
    std::thread([](){
        singl();
        static thread_local URef u;
    }).join();

    return 0;
}

具有以下输出:

Singl() 2
Singl() 2
1
~Singl() 2
~Singl() 2

我使用mingw-w64 gcc7.2 posix线程在windows下编译和运行。

Coliru有不同的输出: http://coliru.stacked-crooked.com/a/3da415345ea6c2ee

这是什么,我的工具链/编译器出了什么问题,或者它应该是怎么回事?为什么我在同一个线程上有两个thread_local对象(或构造两次?)

1 个答案:

答案 0 :(得分:0)

您的编译器或工具链可能有问题。

对于Linux上的clang ++ 8和g ++ 8.2(确切地说是Devuan ASCII),线程局部变量仅构造一次。