xref: /llvm-project/lldb/test/API/lang/c/tls_globals/a.c (revision fdea9a4ec9b0d9585b8fe8a612686d9f44f40ddc)
1 #include <unistd.h>
2 
3 __thread int var_shared = 33;
4 
5 int
touch_shared()6 touch_shared()
7 {
8     return var_shared;
9 }
10 
shared_check()11 void shared_check()
12 {
13 	var_shared *= 2;
14 	usleep(1); // shared thread breakpoint
15 }
16