84d9c625bf
- Fix for possible unset uid/gid in toproto - Fix for default mtree style - Update libelf - Importing libexecinfo - Resynchronize GCC, mpc, gmp, mpfr - build.sh: Replace params with show-params. This has been done as the make target has been renamed in the same way, while a new target named params has been added. This new target generates a file containing all the parameters, instead of printing it on the console. - Update test48 with new etc/services (Fix by Ben Gras <ben@minix3.org) get getservbyport() out of the inner loop Change-Id: Ie6ad5226fa2621ff9f0dee8782ea48f9443d2091
97 lines
3.2 KiB
C
97 lines
3.2 KiB
C
/* This file is automatically generated. DO NOT EDIT! */
|
|
/* Generated from: NetBSD: mknative-gcc,v 1.70 2013/05/05 07:11:34 skrll Exp */
|
|
/* Generated from: NetBSD: mknative.common,v 1.9 2007/02/05 18:26:01 apb Exp */
|
|
|
|
/* Copyright (C) 2005, 2008, 2009 Free Software Foundation, Inc.
|
|
Contributed by Jakub Jelinek <jakub@redhat.com>.
|
|
|
|
This file is part of the GNU OpenMP Library (libgomp).
|
|
|
|
Libgomp is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3, or (at your option)
|
|
any later version.
|
|
|
|
Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
more details.
|
|
|
|
Under Section 7 of GPL version 3, you are granted additional
|
|
permissions described in the GCC Runtime Library Exception, version
|
|
3.1, as published by the Free Software Foundation.
|
|
|
|
You should have received a copy of the GNU General Public License and
|
|
a copy of the GCC Runtime Library Exception along with this program;
|
|
see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
/* This file contains prototypes of functions in the external ABI.
|
|
This file is included by files in the testsuite. */
|
|
|
|
#ifndef LIBGOMP_F_H
|
|
#define LIBGOMP_F_H 1
|
|
|
|
#include "libgomp.h"
|
|
|
|
#if (4 == 4) \
|
|
&& (4 <= 4)
|
|
# define OMP_LOCK_DIRECT
|
|
typedef omp_lock_t *omp_lock_arg_t;
|
|
# define omp_lock_arg(arg) (arg)
|
|
#else
|
|
typedef union { omp_lock_t *lock; uint64_t u; } *omp_lock_arg_t;
|
|
# define omp_lock_arg(arg) ((arg)->lock)
|
|
# endif
|
|
|
|
#if (12 == 8) \
|
|
&& (4 <= 12)
|
|
# define OMP_NEST_LOCK_DIRECT
|
|
typedef omp_nest_lock_t *omp_nest_lock_arg_t;
|
|
# define omp_nest_lock_arg(arg) (arg)
|
|
#else
|
|
typedef union { omp_nest_lock_t *lock; uint64_t u; } *omp_nest_lock_arg_t;
|
|
# define omp_nest_lock_arg(arg) ((arg)->lock)
|
|
# endif
|
|
|
|
#if (28 == 8) \
|
|
&& (4 <= 28)
|
|
# define OMP_LOCK_25_DIRECT
|
|
typedef omp_lock_25_t *omp_lock_25_arg_t;
|
|
# define omp_lock_25_arg(arg) (arg)
|
|
#else
|
|
typedef union { omp_lock_25_t *lock; uint64_t u; } *omp_lock_25_arg_t;
|
|
# define omp_lock_25_arg(arg) ((arg)->lock)
|
|
# endif
|
|
|
|
#if (32 == 8) \
|
|
&& (4 <= 32)
|
|
# define OMP_NEST_LOCK_25_DIRECT
|
|
typedef omp_nest_lock_25_t *omp_nest_lock_25_arg_t;
|
|
# define omp_nest_lock_25_arg(arg) (arg)
|
|
#else
|
|
typedef union { omp_nest_lock_25_t *lock; uint64_t u; } *omp_nest_lock_25_arg_t;
|
|
# define omp_nest_lock_25_arg(arg) ((arg)->lock)
|
|
# endif
|
|
|
|
static inline void
|
|
omp_check_defines (void)
|
|
{
|
|
char test[(4 != sizeof (omp_lock_t)
|
|
|| 4 != __alignof (omp_lock_t)
|
|
|| 12 != sizeof (omp_nest_lock_t)
|
|
|| 4 != __alignof (omp_nest_lock_t)
|
|
|| 4 != sizeof (*(omp_lock_arg_t) 0)
|
|
|| 8 != sizeof (*(omp_nest_lock_arg_t) 0))
|
|
? -1 : 1] __attribute__ ((__unused__));
|
|
char test2[(28 != sizeof (omp_lock_25_t)
|
|
|| 4 != __alignof (omp_lock_25_t)
|
|
|| 32 != sizeof (omp_nest_lock_25_t)
|
|
|| 4 != __alignof (omp_nest_lock_25_t)
|
|
|| 8 != sizeof (*(omp_lock_25_arg_t) 0)
|
|
|| 8
|
|
!= sizeof (*(omp_nest_lock_25_arg_t) 0))
|
|
? -1 : 1] __attribute__ ((__unused__));
|
|
}
|
|
|
|
#endif /* LIBGOMP_F_H */
|