1__thread char bar[10];
2
3void
4set_bar (int i, int v)
5{
6  bar[i] = v;
7}
8