From a86deb460ef5aff7a096a4c47f66bc8f4a554e3c Mon Sep 17 00:00:00 2001 From: Sven Stork Date: Tue, 27 Feb 2007 09:43:32 +0000 Subject: [PATCH] - export required symbols This commit was SVN r13810. --- orte/mca/errmgr/hnp/errmgr_hnp_component.c | 2 +- orte/mca/errmgr/proxy/errmgr_proxy_component.c | 2 +- orte/mca/iof/base/iof_base_setup.h | 8 ++++---- orte/mca/odls/base/odls_private.h | 2 +- orte/mca/pls/slurm/pls_slurm_component.c | 2 +- orte/mca/rds/proxy/rds_proxy_component.c | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/orte/mca/errmgr/hnp/errmgr_hnp_component.c b/orte/mca/errmgr/hnp/errmgr_hnp_component.c index 3b3b11cdd8..d16412f692 100644 --- a/orte/mca/errmgr/hnp/errmgr_hnp_component.c +++ b/orte/mca/errmgr/hnp/errmgr_hnp_component.c @@ -47,7 +47,7 @@ /* * Struct of function pointers that need to be initialized */ -mca_errmgr_base_component_t mca_errmgr_hnp_component = { +ORTE_MODULE_DECLSPEC mca_errmgr_base_component_t mca_errmgr_hnp_component = { { ORTE_ERRMGR_BASE_VERSION_1_3_0, diff --git a/orte/mca/errmgr/proxy/errmgr_proxy_component.c b/orte/mca/errmgr/proxy/errmgr_proxy_component.c index ed1f339201..80d9f5beda 100644 --- a/orte/mca/errmgr/proxy/errmgr_proxy_component.c +++ b/orte/mca/errmgr/proxy/errmgr_proxy_component.c @@ -47,7 +47,7 @@ /* * Struct of function pointers that need to be initialized */ -mca_errmgr_base_component_t mca_errmgr_proxy_component = { +ORTE_MODULE_DECLSPEC mca_errmgr_base_component_t mca_errmgr_proxy_component = { { ORTE_ERRMGR_BASE_VERSION_1_3_0, diff --git a/orte/mca/iof/base/iof_base_setup.h b/orte/mca/iof/base/iof_base_setup.h index 0225ba8bef..7403ef0d58 100644 --- a/orte/mca/iof/base/iof_base_setup.h +++ b/orte/mca/iof/base/iof_base_setup.h @@ -40,11 +40,11 @@ typedef struct orte_iof_base_io_conf_t orte_iof_base_io_conf_t; * Do all stdio forwarding that must be done before fork() is called. * This might include creating pipes or ptys or similar work. */ -int orte_iof_base_setup_prefork(orte_iof_base_io_conf_t *opts); +ORTE_DECLSPEC int orte_iof_base_setup_prefork(orte_iof_base_io_conf_t *opts); -int orte_iof_base_setup_child(orte_iof_base_io_conf_t *opts); +ORTE_DECLSPEC int orte_iof_base_setup_child(orte_iof_base_io_conf_t *opts); -int orte_iof_base_setup_parent(const orte_process_name_t* name, - orte_iof_base_io_conf_t *opts); +ORTE_DECLSPEC int orte_iof_base_setup_parent(const orte_process_name_t* name, + orte_iof_base_io_conf_t *opts); #endif diff --git a/orte/mca/odls/base/odls_private.h b/orte/mca/odls/base/odls_private.h index 626332a731..67759bf78f 100644 --- a/orte/mca/odls/base/odls_private.h +++ b/orte/mca/odls/base/odls_private.h @@ -56,7 +56,7 @@ typedef struct orte_odls_child_t { bool alive; /* is this proc alive? */ orte_proc_state_t state; /* the state of the process */ } orte_odls_child_t; -OBJ_CLASS_DECLARATION(orte_odls_child_t); +ORTE_DECLSPEC OBJ_CLASS_DECLARATION(orte_odls_child_t); typedef struct orte_odls_globals_t { diff --git a/orte/mca/pls/slurm/pls_slurm_component.c b/orte/mca/pls/slurm/pls_slurm_component.c index 622255e975..85bcc23d7f 100644 --- a/orte/mca/pls/slurm/pls_slurm_component.c +++ b/orte/mca/pls/slurm/pls_slurm_component.c @@ -57,7 +57,7 @@ static orte_pls_base_module_t *pls_slurm_init(int *priority); * and pointers to our public functions in it */ -orte_pls_slurm_component_t mca_pls_slurm_component = { +ORTE_MODULE_DECLSPEC orte_pls_slurm_component_t mca_pls_slurm_component = { { /* First, the mca_component_t struct containing meta diff --git a/orte/mca/rds/proxy/rds_proxy_component.c b/orte/mca/rds/proxy/rds_proxy_component.c index 8ffb4efb07..60687a28bb 100644 --- a/orte/mca/rds/proxy/rds_proxy_component.c +++ b/orte/mca/rds/proxy/rds_proxy_component.c @@ -38,7 +38,7 @@ /* * Struct of function pointers that need to be initialized */ -orte_rds_base_component_t mca_rds_proxy_component = { +ORTE_MODULE_DECLSPEC orte_rds_base_component_t mca_rds_proxy_component = { { ORTE_RDS_BASE_VERSION_1_3_0,