/usr/include/openturns/OTdebug.h is in libopenturns-dev 1.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | // -*- C -*-
/**
* @file OTdebug.h
* @brief The header file of Open TURNS for debug level
*
* Copyright (C) 2005-2013 EDF-EADS-Phimeca
*
* This library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This library 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*
* @author schueller
* @date 2012-02-17 19:35:43 +0100 (Fri, 17 Feb 2012)
*/
#ifndef OPENTURNS_OTDEBUG_H
# define OPENTURNS_OTDEBUG_H
# include <stdlib.h> /* POSIX: for inclusion of <features.h> in GNU glibc systems */
/* BEGIN_C_DECLS should be used at the beginning of your declarations,
so that C++ compilers don't mangle their names. Use END_C_DECLS at
the end of C declarations. */
#undef BEGIN_C_DECLS
#undef END_C_DECLS
#ifdef __cplusplus
# define BEGIN_C_DECLS extern "C" {
# define END_C_DECLS }
#else
# define BEGIN_C_DECLS /* empty */
# define END_C_DECLS /* empty */
#endif
# ifdef __GNUC__
# define GCC_VERSION (__GNUC__ * 10000 \
+ __GNUC_MINOR__ * 100 \
+ __GNUC_PATCHLEVEL__)
# if GCC_VERSION <= 30406 /* GCC 3.4.6 and below */
# define REINTERPRET_CAST(T,V) ( (T) (V) )
# else /* GCC after 3.4.6 */
# define REINTERPRET_CAST(T,V) ( reinterpret_cast< T > (V) )
# endif /* GCC 3.4.6 test */
# if !defined(WIN32) && !defined(__APPLE__) /* __GLIBC_PREREQ not defined on mingw or OSX */
/* The pthread library is bogus for glibc < 2.10 */
# if defined(__GNU_LIBRARY__) && ! __GLIBC_PREREQ(2, 10)
# define BOGUS_PTHREAD_LIBRARY 1
# endif
# endif
# ifdef SWIG
# define DEPRECATED
# define UNUSED
# define NOTHROW
# else /* not SWIG */
# define DEPRECATED __attribute__ ((deprecated))
# define UNUSED __attribute__ ((unused))
# define NOTHROW __attribute__ ((nothrow))
# endif /* SWIG */
# else /* not __GNUC_ */
# define GCC_VERSION 0
# define DEPRECATED
# define UNUSED
# define NOTHROW
# endif /* __GNUC_ */
/* From http://gcc.gnu.org/wiki/Visibility */
/* Generic helper definitions for shared library support */
#if defined _WIN32 || defined __CYGWIN__
#define OT_HELPER_DLL_IMPORT __declspec(dllimport)
#define OT_HELPER_DLL_EXPORT __declspec(dllexport)
#define OT_HELPER_DLL_LOCAL
#else
#if __GNUC__ >= 4
#define OT_HELPER_DLL_IMPORT __attribute__ ((visibility ("default")))
#define OT_HELPER_DLL_EXPORT __attribute__ ((visibility ("default")))
#define OT_HELPER_DLL_LOCAL __attribute__ ((visibility ("hidden")))
#else
#define OT_HELPER_DLL_IMPORT
#define OT_HELPER_DLL_EXPORT
#define OT_HELPER_DLL_LOCAL
#endif
#endif
/* Now we use the generic helper definitions above to define OT_API and OT_LOCAL.
* OT_API is used for the public API symbols. It either DLL imports or DLL exports (or does nothing for static build)
* OT_LOCAL is used for non-api symbols. */
#ifdef OT_DLL /* defined if OT is compiled as a DLL */
#ifdef OT_DLL_EXPORTS /* defined if we are building the OT DLL (instead of using it) */
#define OT_API OT_HELPER_DLL_EXPORT
#else
#define OT_API OT_HELPER_DLL_IMPORT
#endif /* OT_DLL_EXPORTS */
#define OT_LOCAL OT_HELPER_DLL_LOCAL
#else /* OT_DLL is not defined: this means OT is a static lib. */
#define OT_API
#define OT_LOCAL
#endif /* OT_DLL */
#endif /* OPENTURNS_OTDEBUG_H */
|