aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.threads/tls-shared.c
blob: e359191f4e5eb406a44c1fd54f8f68984260b711 (plain)
1
2
3
4
5
6
7
8
9
10

#include <pthread.h>

__thread int i_tls = 1;
int foo ()
{
  /* Ensure we link against pthreads even with --as-needed.  */
  pthread_testcancel();
  return i_tls;
}