xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/tls-shared.c (revision a5a4af3bd380a7b58b758d9b311cef9f7c34aeb4)
1 
2 #include <pthread.h>
3 
4 __thread int i_tls = 1;
foo()5 int foo ()
6 {
7   /* Ensure we link against pthreads even with --as-needed.  */
8   pthread_testcancel();
9   return i_tls;
10 }
11 
12