view libgomp/testsuite/libgomp.c/omp-parallel-for.c @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children 04ced10e8804
line wrap: on
line source

extern void abort (void);

main()
{
  int i, a;

  a = 30;

#pragma omp parallel for firstprivate (a) lastprivate (a) \
	num_threads (2) schedule(static)
  for (i = 0; i < 10; i++)
    a = a + i;

  /* The thread that owns the last iteration will have computed
     30 + 5 + 6 + 7 + 8 + 9 = 65.  */
  if (a != 65)
    abort ();

  return 0;
}