File: oshmem_config.h

package info (click to toggle)
openmpi 3.1.3-11
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 118,572 kB
  • sloc: ansic: 628,972; f90: 17,993; makefile: 13,761; sh: 7,051; java: 6,360; perl: 3,215; cpp: 2,225; python: 1,350; lex: 988; fortran: 52; tcl: 12
file content (67 lines) | stat: -rw-r--r-- 2,001 bytes parent folder | download | duplicates (7)
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
/* -*- c -*-
 *
 * Copyright (c) 2013      Mellanox Technologies, Inc.
 *                         All rights reserved.
 * Copyright (c) 2013      Cisco Systems, Inc.  All rights reserved.
 * Copyright (c) 2016      Research Organization for Information Science
 *                         and Technology (RIST). All rights reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 *
 * Function: - OS, CPU and compiler dependent configuration
 */

#ifndef OSHMEM_CONFIG_H
#define OSHMEM_CONFIG_H

/* Need to include a bunch of infrastructure from the OMPI layer */
#include "ompi_config.h"

#define OSHMEM_IDENT_STRING OPAL_IDENT_STRING

#if defined(__WINDOWS__)

#  if defined(_USRDLL)    /* building shared libraries (.DLL) */
#    if defined(OSHMEM_EXPORTS)
#      define OSHMEM_DECLSPEC        __declspec(dllexport)
#      define OSHMEM_MODULE_DECLSPEC
#    else
#      define OSHMEM_DECLSPEC        __declspec(dllimport)
#      if defined(OSHMEM_MODULE_EXPORTS)
#        define OSHMEM_MODULE_DECLSPEC __declspec(dllexport)
#      else
#        define OSHMEM_MODULE_DECLSPEC __declspec(dllimport)
#      endif  /* defined(OSHMEM_MODULE_EXPORTS) */
#    endif  /* defined(OSHMEM_EXPORTS) */
#  else          /* building static library */
#    if defined(OSHMEM_IMPORTS)
#      define OSHMEM_DECLSPEC        __declspec(dllimport)
#    else
#      define OSHMEM_DECLSPEC
#    endif  /* defined(OSHMEM_IMPORTS) */
#    define OSHMEM_MODULE_DECLSPEC
#  endif  /* defined(_USRDLL) */

#else

#  if OPAL_C_HAVE_VISIBILITY
#    ifndef OSHMEM_DECLSPEC
#      define OSHMEM_DECLSPEC            __opal_attribute_visibility__("default")
#    endif
#    ifndef OSHMEM_MODULE_DECLSPEC
#      define OSHMEM_MODULE_DECLSPEC     __opal_attribute_visibility__("default")
#    endif
#  else
#    ifndef OSHMEM_DECLSPEC
#      define OSHMEM_DECLSPEC
#    endif
#    ifndef OSHMEM_MODULE_DECLSPEC
#      define OSHMEM_MODULE_DECLSPEC
#    endif
#  endif
#endif  /* defined(__WINDOWS__) */

#endif