enum ThreadStorageClassSpecifier
Description
Thread storage-class-specifier.
Declared at: clang/include/clang/Basic/Specifiers.h:220
Enumerators
Name | Value | Comment |
---|---|---|
TSCS_unspecified | 0 | |
TSCS___thread | 1 | GNU __thread. |
TSCS_thread_local | 2 | C++11 thread_local. Implies 'static' at block scope, but not at class scope. |
TSCS__Thread_local | 3 | C11 _Thread_local. Must be combined with either 'static' or 'extern' if used at block scope. |