- Export those components in correct way.
This commit was SVN r15804.
Этот коммит содержится в:
родитель
b558e820cb
Коммит
eea712f9ab
@ -72,6 +72,8 @@ int orte_errmgr_hnp_register_job(orte_jobid_t job);
|
|||||||
|
|
||||||
int orte_errmgr_hnp_abort_procs_request(orte_process_name_t *procs, orte_std_cntr_t nprocs);
|
int orte_errmgr_hnp_abort_procs_request(orte_process_name_t *procs, orte_std_cntr_t nprocs);
|
||||||
|
|
||||||
|
ORTE_MODULE_DECLSPEC extern mca_errmgr_base_component_t mca_errmgr_hnp_component;
|
||||||
|
|
||||||
#if defined(c_plusplus) || defined(__cplusplus)
|
#if defined(c_plusplus) || defined(__cplusplus)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
/*
|
/*
|
||||||
* Struct of function pointers that need to be initialized
|
* Struct of function pointers that need to be initialized
|
||||||
*/
|
*/
|
||||||
ORTE_MODULE_DECLSPEC mca_errmgr_base_component_t mca_errmgr_hnp_component = {
|
mca_errmgr_base_component_t mca_errmgr_hnp_component = {
|
||||||
{
|
{
|
||||||
ORTE_ERRMGR_BASE_VERSION_1_3_0,
|
ORTE_ERRMGR_BASE_VERSION_1_3_0,
|
||||||
|
|
||||||
|
@ -74,6 +74,8 @@ int orte_errmgr_orted_register_job(orte_jobid_t job);
|
|||||||
|
|
||||||
int orte_errmgr_orted_abort_procs_request(orte_process_name_t *procs, orte_std_cntr_t nprocs);
|
int orte_errmgr_orted_abort_procs_request(orte_process_name_t *procs, orte_std_cntr_t nprocs);
|
||||||
|
|
||||||
|
ORTE_MODULE_DECLSPEC extern mca_errmgr_base_component_t mca_errmgr_orted_component;
|
||||||
|
|
||||||
#if defined(c_plusplus) || defined(__cplusplus)
|
#if defined(c_plusplus) || defined(__cplusplus)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
/*
|
/*
|
||||||
* Struct of function pointers that need to be initialized
|
* Struct of function pointers that need to be initialized
|
||||||
*/
|
*/
|
||||||
ORTE_MODULE_DECLSPEC mca_errmgr_base_component_t mca_errmgr_orted_component = {
|
mca_errmgr_base_component_t mca_errmgr_orted_component = {
|
||||||
{
|
{
|
||||||
ORTE_ERRMGR_BASE_VERSION_1_3_0,
|
ORTE_ERRMGR_BASE_VERSION_1_3_0,
|
||||||
|
|
||||||
|
@ -74,6 +74,8 @@ int orte_errmgr_proxy_register_job(orte_jobid_t job);
|
|||||||
|
|
||||||
int orte_errmgr_proxy_abort_procs_request(orte_process_name_t *procs, orte_std_cntr_t nprocs);
|
int orte_errmgr_proxy_abort_procs_request(orte_process_name_t *procs, orte_std_cntr_t nprocs);
|
||||||
|
|
||||||
|
ORTE_MODULE_DECLSPEC extern mca_errmgr_base_component_t mca_errmgr_proxy_component;
|
||||||
|
|
||||||
#if defined(c_plusplus) || defined(__cplusplus)
|
#if defined(c_plusplus) || defined(__cplusplus)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -47,7 +47,7 @@
|
|||||||
/*
|
/*
|
||||||
* Struct of function pointers that need to be initialized
|
* Struct of function pointers that need to be initialized
|
||||||
*/
|
*/
|
||||||
ORTE_MODULE_DECLSPEC mca_errmgr_base_component_t mca_errmgr_proxy_component = {
|
mca_errmgr_base_component_t mca_errmgr_proxy_component = {
|
||||||
{
|
{
|
||||||
ORTE_ERRMGR_BASE_VERSION_1_3_0,
|
ORTE_ERRMGR_BASE_VERSION_1_3_0,
|
||||||
|
|
||||||
|
@ -58,6 +58,7 @@ int orte_pls_proxy_terminate_proc(const orte_process_name_t* name);
|
|||||||
int orte_pls_proxy_signal_job(orte_jobid_t job, int32_t signal, opal_list_t *attrs);
|
int orte_pls_proxy_signal_job(orte_jobid_t job, int32_t signal, opal_list_t *attrs);
|
||||||
int orte_pls_proxy_signal_proc(const orte_process_name_t* name, int32_t signal);
|
int orte_pls_proxy_signal_proc(const orte_process_name_t* name, int32_t signal);
|
||||||
|
|
||||||
|
ORTE_MODULE_DECLSPEC extern orte_pls_base_component_t mca_pls_proxy_component;
|
||||||
|
|
||||||
#if defined(c_plusplus) || defined(__cplusplus)
|
#if defined(c_plusplus) || defined(__cplusplus)
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
/*
|
/*
|
||||||
* Struct of function pointers that need to be initialized
|
* Struct of function pointers that need to be initialized
|
||||||
*/
|
*/
|
||||||
ORTE_MODULE_DECLSPEC orte_pls_base_component_t mca_pls_proxy_component = {
|
orte_pls_base_component_t mca_pls_proxy_component = {
|
||||||
{
|
{
|
||||||
ORTE_PLS_BASE_VERSION_1_3_0,
|
ORTE_PLS_BASE_VERSION_1_3_0,
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@ extern "C" {
|
|||||||
* Globally exported variable
|
* Globally exported variable
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ORTE_DECLSPEC extern orte_pls_slurm_component_t
|
ORTE_MODULE_DECLSPEC extern orte_pls_slurm_component_t
|
||||||
mca_pls_slurm_component;
|
mca_pls_slurm_component;
|
||||||
ORTE_DECLSPEC extern orte_pls_base_module_t
|
ORTE_DECLSPEC extern orte_pls_base_module_t
|
||||||
orte_pls_slurm_module;
|
orte_pls_slurm_module;
|
||||||
|
@ -57,7 +57,7 @@ static orte_pls_base_module_t *pls_slurm_init(int *priority);
|
|||||||
* and pointers to our public functions in it
|
* and pointers to our public functions in it
|
||||||
*/
|
*/
|
||||||
|
|
||||||
ORTE_MODULE_DECLSPEC orte_pls_slurm_component_t mca_pls_slurm_component = {
|
orte_pls_slurm_component_t mca_pls_slurm_component = {
|
||||||
|
|
||||||
{
|
{
|
||||||
/* First, the mca_component_t struct containing meta
|
/* First, the mca_component_t struct containing meta
|
||||||
|
@ -49,7 +49,7 @@ int orte_rds_proxy_finalize(void);
|
|||||||
*/
|
*/
|
||||||
int orte_rds_proxy_query(orte_jobid_t job);
|
int orte_rds_proxy_query(orte_jobid_t job);
|
||||||
|
|
||||||
ORTE_DECLSPEC extern orte_rds_base_component_t mca_rds_proxy_component;
|
ORTE_MODULE_DECLSPEC extern orte_rds_base_component_t mca_rds_proxy_component;
|
||||||
|
|
||||||
#if defined(c_plusplus) || defined(__cplusplus)
|
#if defined(c_plusplus) || defined(__cplusplus)
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
/*
|
/*
|
||||||
* Struct of function pointers that need to be initialized
|
* Struct of function pointers that need to be initialized
|
||||||
*/
|
*/
|
||||||
ORTE_MODULE_DECLSPEC orte_rds_base_component_t mca_rds_proxy_component = {
|
orte_rds_base_component_t mca_rds_proxy_component = {
|
||||||
{
|
{
|
||||||
ORTE_RDS_BASE_VERSION_1_3_0,
|
ORTE_RDS_BASE_VERSION_1_3_0,
|
||||||
|
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user