/* * $HEADER$ * * This file is included at the bottom of ompi_config.h, and is * therefore a) after all the #define's that were output from * configure, and b) included in most/all files in Open MPI. * * Since this file is *only* ever included by ompi_config.h, and * ompi_config.h already has #ifndef/#endif protection, there is no * need to #ifndef/#endif protection here. */ /* * If we're in C, bring in the bool type and true/false constants. */ #ifndef __cplusplus #if OMPI_USE_STDBOOL_H #include #else typedef enum { false, true } bool; #endif #endif /* * Maximum size of a filename path. */ #include #if defined(PATH_MAX) #define OMPI_PATH_MAX (PATH_MAX + 1) #elif defined(_POSIX_PATH_MAX) #define OMPI_PATH_MAX (_POSIX_PATH_MAX + 1) #else #define OMPI_PATH_MAX 256 #endif /* * Do we have thread support? */ #define OMPI_HAVE_THREADS (OMPI_HAVE_SOLARIS_THREADS || OMPI_HAVE_POSIX_THREADS) /* parameter indicating if to check MPI arguments */ extern bool ompi_mpi_param_check; /* * Do we have ? */ #ifdef HAVE_STDINT_H #include #else #include "ompi_stdint.h" #endif /* * Do we want memory debugging? * * A few scenarios: * * 1. In the OMPI C library: we want these defines in all cases * 2. In the OMPI C++ bindings: we do not want them * 3. In the OMPI C++ executables: we do want them * * So for 1, everyone must include first. For 2, the * C++ bindings will never include -- they will only * include , which includes , but after * OMPI_MPI_H is defined. For 3, it's the same as 1 -- just include * first. */ #if OMPI_ENABLE_MEM_DEBUG && defined(OMPI_BUILDING) && OMPI_BUILDING && !defined(OMPI_MPI_H) /* It is safe to include util/malloc.h here because a) it will only happen when we are building OMPI and therefore have a full OMPI source tree [including headers] available, and b) we guaranteed to *not* to include anything else via mem/malloc.h, so we won't have Cascading Includes Of Death. */ #include "util/malloc.h" #if defined(malloc) #undef malloc #endif #define malloc(size) ompi_malloc((size), __FILE__, __LINE__) #if defined(calloc) #undef calloc #endif #define calloc(nmembers, size) ompi_calloc((nmembers), (size), __FILE__, __LINE__) #if defined(realloc) #undef realloc #endif #define realloc(ptr, size) ompi_realloc((ptr), (size), __FILE__, __LINE__) #if defined(free) #undef free #endif #define free(ptr) ompi_free((ptr), __FILE__, __LINE__) #endif /* * Do we want to override debugging controls? */ #if defined(OMPI_ENABLE_DEBUG_OVERRIDE) && OMPI_ENABLE_DEBUG_OVERRIDE #undef OMPI_ENABLE_DEBUG #define OMPI_ENABLE_DEBUG 1 #endif /* * C type for Fortran COMPLEX */ typedef struct { ompi_fortran_real_t real; ompi_fortran_real_t imag; } ompi_fortran_complex_t; /* * C type for Fortran DOUBLE COMPLEX */ typedef struct { ompi_fortran_dblprec_t real; ompi_fortran_dblprec_t imag; } ompi_fortran_dblcomplex_t; /* * printf functions for portability */ #if !defined(HAVE_VASPRINTF) || !defined(HAVE_VSNPRINTF) #if __STDC__ #include #else #ifdef __cplusplus #include #else #include #endif #endif /* __STDC__ */ #endif #if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) #include #endif #ifdef __cplusplus extern "C" { #endif #ifndef HAVE_ASPRINTF int ompi_asprintf(char **, const char *, ...); # define asprintf ompi_asprintf #endif #ifndef HAVE_SNPRINTF int ompi_snprintf(char *, size_t, const char *, ...); # define snprintf ompi_snprintf #endif #ifndef HAVE_VASPRINTF int ompi_vasprintf(char **, const char *, va_list); # define vasprintf ompi_vasprintf #endif #ifndef HAVE_VSNPRINTF int ompi_vsnprintf(char *, size_t, const char *, va_list); # define vsnprintf ompi_vsnprintf #endif #ifdef __cplusplus } #endif /* For windoze weirdness. A symbol is not considered part of a DLL interface unless it is exported. Hence these macros. It needs to be prepended to the declaration of every symbol which needs to be exported from a DLL. For us, this would be all MPI_ functions and also all function from within Open MPI which are used by other execuatables such as ompi_info, mpicc, etc. Visual studio defines WIN32 and is the standard way of knowing whether we are compiling using its native compiler (random note: the compiler itself does not define this macro -- it's passed as -DWIN32 automatically). Also, they simply define the macro as opposed to defining it to something. I guess they dont program defensively :-) */ #if defined (WIN32) #define OMPI_EXPORT __declspec(dllexport) #define OMPI_IMPORT __declspec(dllimport) #else #define OMPI_EXPORT #define OMPI_IMPORT #endif