mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-07 23:22:11 +01:00
21 lines
248 B
C
21 lines
248 B
C
/*
|
|
* @@name: get_nthrs.2c
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: no
|
|
* @@expect: success
|
|
*/
|
|
#include <omp.h>
|
|
void work(int i);
|
|
|
|
void correct()
|
|
{
|
|
int i;
|
|
|
|
#pragma omp parallel private(i)
|
|
{
|
|
i = omp_get_thread_num();
|
|
work(i);
|
|
}
|
|
}
|