aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/libgomp/testsuite/libgomp.c/lock-2.c
blob: 9009b12fe5d00be5a662fd5d5cd5b956c6495285 (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
#include <omp.h>
#include <stdlib.h>

int
main (void)
{
  int l = 0;
  omp_nest_lock_t lock;
  omp_init_nest_lock (&lock);
#pragma omp parallel reduction (+:l) num_threads (1)
  {
    if (omp_test_nest_lock (&lock) != 1)
      l++;
    if (omp_test_nest_lock (&lock) != 2)
      l++;
  #pragma omp task if (0) shared (lock, l)
    {
      if (omp_test_nest_lock (&lock) != 0)
	l++;
    }
  #pragma omp taskwait
    if (omp_test_nest_lock (&lock) != 3)
      l++;
    omp_unset_nest_lock (&lock);
    omp_unset_nest_lock (&lock);
    omp_unset_nest_lock (&lock);
  }
  if (l)
    abort ();
  omp_destroy_nest_lock (&lock);
  return 0;
}