1 2 3 4 5 6 7 8 9
#include <tls.h> __thread int a[2] __attribute__ ((tls_model ("initial-exec"))); int foo (void) { return a[0]; }