summaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.c/lock-1.c
blob: e09645dbc3f451359c5a6fa951d4378bc6da7e1f (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
#include <omp.h>
#include <stdlib.h>

int
main (void)
{
  int l = 0;
  omp_nest_lock_t lock;
  omp_init_nest_lock (&lock);
  if (omp_test_nest_lock (&lock) != 1)
    abort ();
  if (omp_test_nest_lock (&lock) != 2)
    abort ();
#pragma omp parallel if (0) reduction (+:l)
  {
    /* In OpenMP 2.5 this was supposed to return 3,
       but in OpenMP 3.0 the parallel region has a different
       task and omp_*_lock_t are owned by tasks, not by threads.  */
    if (omp_test_nest_lock (&lock) != 0)
      l++;
  }
  if (l)
    abort ();
  if (omp_test_nest_lock (&lock) != 3)
    abort ();
  omp_unset_nest_lock (&lock);
  omp_unset_nest_lock (&lock);
  omp_unset_nest_lock (&lock);
  omp_destroy_nest_lock (&lock);
  return 0;
}