aboutsummaryrefslogtreecommitdiff
path: root/libitm/testsuite/libitm.c++/static_ctor.C
blob: 18f95fc01e58beeaef6bdfc1b1696cac306318d8 (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
/* { dg-do run } */
/* { dg-options "-pthread" } */
/* { dg-xfail-if "" { *-*-* } { "*" } { "" } } */
/* Tests static constructors inside of transactional code.  */

#include <pthread.h>
#include <stdlib.h>

int f(int x) __attribute__((noinline,transaction_safe));
int f(int x)
{
  static int y = x;
  return y*x;
}

static void *thread (void *)
{
  int bar;
  __transaction_atomic { bar = f(10); }
  if (bar != 100)
    abort();
  return 0;
}

int main()
{
  int bar;

  // First, initialize y in another thread.
  pthread_t pt;
  pthread_create(&pt, NULL, thread, NULL);
  pthread_join(pt, NULL);

  // Now y should already be initialized.
  __transaction_atomic { bar = f(20); }
  if (bar != 200)
    abort();

  return 0;
}