enum ThreadStorageClassSpecifier

Description

Thread storage-class-specifier.

Declared at: clang/include/clang/Basic/Specifiers.h:220

Enumerators

NameValueComment
TSCS_unspecified0
TSCS___thread1GNU __thread.
TSCS_thread_local2C++11 thread_local. Implies 'static' at block scope, but not at class scope.
TSCS__Thread_local3C11 _Thread_local. Must be combined with either 'static' or 'extern' if used at block scope.