config root man

Current Path : /usr/src/contrib/gcclibs/libgomp/config/posix/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/src/contrib/gcclibs/libgomp/config/posix/omp-lock.h

/* 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 map the two locks to the
   same PTHREADS primitive.  */

#include <pthread.h>

typedef pthread_mutex_t omp_lock_t;
typedef struct { pthread_mutex_t lock; int count; } omp_nest_lock_t;

Man Man