1 extern __thread int tlsvar __attribute__((tls_model("initial-exec")));
2 
3 void *
in_dso(void)4 in_dso (void)
5 {
6   return &tlsvar;
7 }
8