aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/tls/thread_local4g.C
blob: f6a5d4c5b69ce65c14c8a793ebe4d16a41c5e609 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// Test for cleanups with pthread_cancel.

// { dg-do run }
// { dg-require-effective-target c++11 }
// { dg-require-effective-target tls_runtime }
// { dg-require-effective-target pthread }
// { dg-require-effective-target non_bionic }
// { dg-require-cxa-atexit "" }
// { dg-options -pthread }
// { dg-add-options tls }

#include <pthread.h>
#include <unistd.h>

int c;
int d;
struct A
{
  A() { ++c; }
  ~A() { ++d; }
};

thread_local A a;

void *thread_main(void *)
{
  A *ap = &a;
  while (true)
    {
      pthread_testcancel();
      sleep (1);
    }
}

int main()
{
  pthread_t thread;
  pthread_create (&thread, 0, thread_main, 0);
  pthread_cancel(thread);
  pthread_join(thread, 0);
  pthread_create (&thread, 0, thread_main, 0);
  pthread_cancel(thread);
  pthread_join(thread, 0);

   if (c != 2 || d != 2)
     __builtin_abort();
}