mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-10 08:22:11 +01:00
21 lines
258 B
C
21 lines
258 B
C
/*
|
|
* @@name: get_nthrs.2
|
|
* @@type: C
|
|
* @@operation: compile
|
|
* @@expect: success
|
|
* @@version: pre_omp_3.0
|
|
*/
|
|
#include <omp.h>
|
|
void work(int i);
|
|
|
|
void correct()
|
|
{
|
|
int i;
|
|
|
|
#pragma omp parallel private(i)
|
|
{
|
|
i = omp_get_thread_num();
|
|
work(i);
|
|
}
|
|
}
|