1
2
3
4
5
6
7
8
9
10
11 #if !defined(OSHMEM_INFO_SUPPORT_H)
12 #define OSHMEM_INFO_SUPPORT_H
13
14 #include "oshmem_config.h"
15
16 #include "opal/class/opal_pointer_array.h"
17
18 OSHMEM_DECLSPEC void oshmem_info_register_types(opal_pointer_array_t *mca_types);
19
20 OSHMEM_DECLSPEC int oshmem_info_register_framework_params(opal_pointer_array_t *component_map);
21
22 OSHMEM_DECLSPEC void oshmem_info_close_components(void);
23
24 OSHMEM_DECLSPEC void oshmem_info_show_oshmem_version(const char *scope);
25
26 #endif