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