Warning, file /include/prte/src/mca/prtedl/base/base.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #ifndef PRTE_DL_BASE_H
0016 #define PRTE_DL_BASE_H
0017
0018 #include "prte_config.h"
0019 #include "src/mca/prtedl/prtedl.h"
0020 #include "src/util/pmix_environ.h"
0021
0022 #include "src/mca/base/pmix_base.h"
0023 #include "src/mca/base/pmix_mca_base_framework.h"
0024
0025 BEGIN_C_DECLS
0026
0027
0028
0029
0030 PRTE_EXPORT extern pmix_mca_base_framework_t prte_prtedl_base_framework;
0031 PRTE_EXPORT extern prte_prtedl_base_component_t *prte_prtedl_base_selected_component;
0032 PRTE_EXPORT extern prte_prtedl_base_module_t *prte_prtedl;
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042 PRTE_EXPORT int prte_dl_base_open(pmix_mca_base_open_flag_t flags);
0043
0044
0045
0046
0047
0048
0049
0050
0051
0052 PRTE_EXPORT int prte_dl_base_select(void);
0053
0054
0055
0056
0057
0058
0059
0060
0061
0062 PRTE_EXPORT int prte_dl_base_close(void);
0063
0064
0065
0066
0067
0068
0069
0070 PRTE_EXPORT int prte_dl_open(const char *fname, bool use_ext, bool private_namespace,
0071 prte_dl_handle_t **handle, char **err_msg);
0072
0073
0074
0075
0076
0077
0078
0079 PRTE_EXPORT int prte_dl_lookup(prte_dl_handle_t *handle, const char *symbol, void **ptr,
0080 char **err_msg);
0081
0082
0083
0084
0085
0086
0087
0088 PRTE_EXPORT int prte_dl_close(prte_dl_handle_t *handle);
0089
0090
0091
0092
0093
0094
0095
0096 PRTE_EXPORT int prte_dl_foreachfile(const char *search_path,
0097 int (*cb_func)(const char *filename, void *context),
0098 void *context);
0099
0100 END_C_DECLS
0101
0102 #endif