config root man

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

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/linux/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.

   When using the Linux futex primitive, non-recursive locks require
   only one int.  Recursive locks require we identify the owning thread
   and so require two ints.  */

typedef int omp_lock_t;
typedef struct { int owner, count; } omp_nest_lock_t;

Man Man