xref: /netbsd-src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.threads/tls-nodebug.c (revision a5a4af3bd380a7b58b758d9b311cef9f7c34aeb4)
1 /* Test accessing TLS based variable without any debug info compiled.  */
2 
3 #include <pthread.h>
4 
5 __thread int thread_local = 42;
6 
main(void)7 int main(void)
8 {
9   /* Ensure we link against pthreads even with --as-needed.  */
10   pthread_testcancel();
11   return 0;
12 }
13