mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-07 23:22:11 +01:00
26 lines
324 B
C
26 lines
324 B
C
/*
|
|
* @@name: psections.1c
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: no
|
|
* @@expect: success
|
|
*/
|
|
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();
|
|
}
|
|
}
|