/* * @@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; }