OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc1/] [libgomp/] [testsuite/] [libgomp.c/] [single-1.c] - Diff between revs 273 and 338

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 273 Rev 338
/* Trivial test of single.  */
/* Trivial test of single.  */
 
 
/* { dg-require-effective-target sync_int_long } */
/* { dg-require-effective-target sync_int_long } */
 
 
#include <omp.h>
#include <omp.h>
#include <sys/time.h>
#include <sys/time.h>
#include <unistd.h>
#include <unistd.h>
#include <assert.h>
#include <assert.h>
#include "libgomp_g.h"
#include "libgomp_g.h"
 
 
 
 
static int test;
static int test;
 
 
static void f_nocopy (void *dummy)
static void f_nocopy (void *dummy)
{
{
  if (GOMP_single_start ())
  if (GOMP_single_start ())
    {
    {
      int iam = omp_get_thread_num ();
      int iam = omp_get_thread_num ();
      int old = __sync_lock_test_and_set (&test, iam);
      int old = __sync_lock_test_and_set (&test, iam);
      assert (old == -1);
      assert (old == -1);
    }
    }
}
}
 
 
static void f_copy (void *dummy)
static void f_copy (void *dummy)
{
{
  int *x = GOMP_single_copy_start ();
  int *x = GOMP_single_copy_start ();
  if (x == NULL)
  if (x == NULL)
    {
    {
      int iam = omp_get_thread_num ();
      int iam = omp_get_thread_num ();
      int old = __sync_lock_test_and_set (&test, iam);
      int old = __sync_lock_test_and_set (&test, iam);
      assert (old == -1);
      assert (old == -1);
      GOMP_single_copy_end (&test);
      GOMP_single_copy_end (&test);
    }
    }
  else
  else
    assert (x == &test);
    assert (x == &test);
}
}
 
 
int main()
int main()
{
{
  omp_set_dynamic (0);
  omp_set_dynamic (0);
 
 
  test = -1;
  test = -1;
  GOMP_parallel_start (f_nocopy, NULL, 3);
  GOMP_parallel_start (f_nocopy, NULL, 3);
  f_nocopy (NULL);
  f_nocopy (NULL);
  GOMP_parallel_end ();
  GOMP_parallel_end ();
 
 
  test = -1;
  test = -1;
  GOMP_parallel_start (f_copy, NULL, 3);
  GOMP_parallel_start (f_copy, NULL, 3);
  f_copy (NULL);
  f_copy (NULL);
  GOMP_parallel_end ();
  GOMP_parallel_end ();
 
 
  return 0;
  return 0;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.