mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
18 lines
298 B
C
18 lines
298 B
C
/*
|
|
* @@name: copyprivate.1
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: no
|
|
* @@expect: success
|
|
*/
|
|
#include <stdio.h>
|
|
float x, y;
|
|
#pragma omp threadprivate(x, y)
|
|
|
|
void init(float a, float b ) {
|
|
#pragma omp single copyprivate(a,b,x,y)
|
|
{
|
|
scanf("%f %f %f %f", &a, &b, &x, &y);
|
|
}
|
|
}
|