6 extern "C" void abort (void);
20 if (omp_get_thread_num () != 0)
27 if (omp_get_thread_num () != 0)
37 if (omp_get_thread_num () != 0)
48 #pragma omp parallel for firstprivate (ret) lastprivate (ret) \
49 schedule (static, 1) num_threads (4)
50 for (i = 0; i < 4; i++)
51 ret.i += omp_get_thread_num ();
62 #pragma omp parallel for num_threads (4)
63 for (i = 0; i < 4; i++)
65 ret.i += omp_get_thread_num () + 1;
75 omp_set_dynamic (false);
77 if (n[0] != 0 || n[1] != 3 || n[2] != 3)
82 if (n[0] != 0 || n[1] != 3 || n[2] != 3)
84 if (x.i != 18 + 0 + 1 + 2 + 3 + 4)