1 static char buf[] = "foobar"; 2 __thread char *tls = buf; 3 gettls()4 char *gettls() 5 { 6 return tls; 7 } 8 9