1
2
3
4__thread int a;
5__thread int b = 5;
6
7
8int getB() { return b; }
9