gcc __thread关键字

Posted jacket-k

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gcc __thread关键字相关的知识,希望对你有一定的参考价值。

https://blog.csdn.net/xj178926426/article/details/54345449

EventLoop.cpp

__thread EventLoop* t_loopInThisThread = 0;
EventLoop::EventLoop() {
    if (t_loopInThisThread) {
        LOG(INFO)<<"Another EventLoop " << t_loopInThisThread << " exists in this thread " << threadId_;
    } else {
        t_loopInThisThread = this;
    }
}

 

以上是关于gcc __thread关键字的主要内容,如果未能解决你的问题,请参考以下文章

线程局部存储: gcc __thread与c++11 thread_local 关键字

gcc __thread 是做啥的?

线程局部变量__thread关键字

linux pthreads 上的 gcc 4.7 - 使用 __thread 的重要 thread_local 解决方法(无提升)

调用 gcc _without_ -pthread 有啥好处?

[AndroidStudio]_[初级]_[配置自动完成的代码片段]