OpenMP-Examples/sources/Example_affinity.5.c

17 lines
217 B
C

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