1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 #ifndef OMPI_MCA_OSC_BASE_H
21 #define OMPI_MCA_OSC_BASE_H
22
23 #include "ompi_config.h"
24 #include "ompi/info/info.h"
25 #include "ompi/communicator/communicator.h"
26 #include "ompi/win/win.h"
27 #include "opal/mca/base/base.h"
28
29
30
31
32 BEGIN_C_DECLS
33
34
35
36
37 int ompi_osc_base_find_available(bool enable_progress_threads,
38 bool enable_mpi_threads);
39
40 int ompi_osc_base_select(ompi_win_t *win,
41 void **base,
42 size_t size,
43 int disp_unit,
44 ompi_communicator_t *comm,
45 opal_info_t *info,
46 int flavor,
47 int *model);
48
49 int ompi_osc_base_finalize(void);
50
51 OMPI_DECLSPEC extern mca_base_framework_t ompi_osc_base_framework;
52
53 END_C_DECLS
54
55 #endif