OpenMP-Examples/sources/Example_affinity.1c.c
2015-01-13 11:38:24 -08:00

16 lines
205 B
C

/*
* @@name: affinity.1c
* @@type: C
* @@compilable: yes
* @@linkable: yes
* @@expect: success
*/
void work();
void main()
{
#pragma omp parallel proc_bind(spread) num_threads(4)
{
work();
}
}