gnu_thread_storage_01.c (94B)
1 static __thread int tls_value; 2 3 int test_main(void) { 4 tls_value = 42; 5 return tls_value; 6 }