mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
20 lines
300 B
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);
|
|
}
|