mc_translate.c: enable further uses of DLexpensive for scalar EQ/NE comparisons
[valgrind.git] / none / tests / tls_so.c
blobf16b963bdada069be6a6762343ce6060c2f86ee7
1 #include <config.h>
3 #ifdef HAVE_TLS
4 #include <pthread.h>
6 extern __thread int so_extern;
7 static __thread int so_local;
8 extern __thread int global;
10 int *test_so_extern(void)
12 return &so_extern;
15 int *test_so_local(void)
17 return &so_local;
20 int *test_so_global(void)
22 return &global;
24 #endif