mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-07 23:22:11 +01:00
19 lines
266 B
C
19 lines
266 B
C
/*
|
|
* @@name: tasking.11c
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: no
|
|
* @@expect: success
|
|
*/
|
|
#include <stdio.h>
|
|
void foo ( )
|
|
{
|
|
int x = 2;
|
|
#pragma omp task shared(x) mergeable
|
|
{
|
|
x++;
|
|
}
|
|
#pragma omp taskwait
|
|
printf("%d\n",x); // prints 3
|
|
}
|