1 __thread int a;
2 
f(void)3 int f(void)
4 {
5   return ++a;
6 }
7