C11, 6.2.4 Storage durations of objects, 4 (emphasis added):
An object whose identifier is declared with the storage-class specifier
_Thread_localhas thread storage duration.
C11, 7.5 Errors <errno.h>, 2 (emphasis added):
errnowhich expands to a modifiable lvalue 201) that has typeintand thread local storage duration
Are "thread storage duration" and "thread local storage duration" the synonyms?
Extra note: currently the support of _Thread_local is independent of __STDC_NO_THREADS__ while it is (probably) expected to be dependent.