From f378ebf14df0952eae870c9865bab8326aa8f137 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Wed, 17 Jun 2015 11:09:54 -0700 Subject: Delete old versions of GCC. Change-Id: I710f125d905290e1024cbd67f48299861790c66c --- gcc-4.6/libgomp/config/posix/omp-lock.h | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 gcc-4.6/libgomp/config/posix/omp-lock.h (limited to 'gcc-4.6/libgomp/config/posix/omp-lock.h') diff --git a/gcc-4.6/libgomp/config/posix/omp-lock.h b/gcc-4.6/libgomp/config/posix/omp-lock.h deleted file mode 100644 index e51dc271f..000000000 --- a/gcc-4.6/libgomp/config/posix/omp-lock.h +++ /dev/null @@ -1,23 +0,0 @@ -/* This header is used during the build process to find the size and - alignment of the public OpenMP locks, so that we can export data - structures without polluting the namespace. - - In this default POSIX implementation, we used to map the two locks to the - same PTHREADS primitive, but for OpenMP 3.0 sem_t needs to be used - instead, as pthread_mutex_unlock should not be called by different - thread than the one that called pthread_mutex_lock. */ - -#include -#include - -typedef pthread_mutex_t omp_lock_25_t; -typedef struct { pthread_mutex_t lock; int count; } omp_nest_lock_25_t; -#ifdef HAVE_BROKEN_POSIX_SEMAPHORES -/* If we don't have working semaphores, we'll make all explicit tasks - tied to the creating thread. */ -typedef pthread_mutex_t omp_lock_t; -typedef struct { pthread_mutex_t lock; int count; void *owner; } omp_nest_lock_t; -#else -typedef sem_t omp_lock_t; -typedef struct { sem_t lock; int count; void *owner; } omp_nest_lock_t; -#endif -- cgit v1.2.3