mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-10 08:22:11 +01:00
26 lines
334 B
C
26 lines
334 B
C
/*
|
|
* @@name: psections.1
|
|
* @@type: C
|
|
* @@operation: compile
|
|
* @@expect: success
|
|
* @@version: pre_omp_3.0
|
|
*/
|
|
void XAXIS();
|
|
void YAXIS();
|
|
void ZAXIS();
|
|
|
|
void sect_example()
|
|
{
|
|
#pragma omp parallel sections
|
|
{
|
|
#pragma omp section
|
|
XAXIS();
|
|
|
|
#pragma omp section
|
|
YAXIS();
|
|
|
|
#pragma omp section
|
|
ZAXIS();
|
|
}
|
|
}
|