mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-07 23:22:11 +01:00
18 lines
239 B
C
18 lines
239 B
C
/*
|
|
* @@name: nthrs_dynamic.1c
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: yes
|
|
* @@expect: success
|
|
*/
|
|
#include <omp.h>
|
|
int main()
|
|
{
|
|
omp_set_dynamic(0);
|
|
#pragma omp parallel num_threads(10)
|
|
{
|
|
/* do work here */
|
|
}
|
|
return 0;
|
|
}
|