OpenMP-Examples/sources/Example_get_nthrs.1.c

20 lines
300 B
C

/*
* @@name: get_nthrs.1c
* @@type: C
* @@compilable: yes
* @@linkable: no
* @@expect: rt-error
*/
#include <omp.h>
void work(int i);
void incorrect() {
int np, i;
np = omp_get_num_threads(); /* misplaced */
#pragma omp parallel for schedule(static)
for (i=0; i < np; i++)
work(i);
}