mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-07 23:22:11 +01:00
28 lines
422 B
C
28 lines
422 B
C
/*
|
|
* @@name: nesting_restrict.2c
|
|
* @@type: C
|
|
* @@compilable: maybe
|
|
* @@linkable: no
|
|
* @@expect: failure
|
|
*/
|
|
void work(int i, int j) {}
|
|
void work1(int i, int n)
|
|
{
|
|
int j;
|
|
/* incorrect nesting of loop regions */
|
|
#pragma omp for
|
|
for (j=0; j<n; j++)
|
|
work(i, j);
|
|
}
|
|
|
|
void wrong2(int n)
|
|
{
|
|
#pragma omp parallel default(shared)
|
|
{
|
|
int i;
|
|
#pragma omp for
|
|
for (i=0; i<n; i++)
|
|
work1(i, n);
|
|
}
|
|
}
|