1
1

Cleanup some symbol visability issues.

This commit was SVN r17733.
Этот коммит содержится в:
Josh Hursey 2008-03-05 13:59:25 +00:00
родитель 06d3145fe4
Коммит 612ebdc2ac
4 изменённых файлов: 10 добавлений и 10 удалений

Просмотреть файл

@ -46,7 +46,7 @@ extern "C" {
ompi_crcp_base_component_t super; /** Base CRCP component */
};
typedef struct ompi_crcp_coord_component_t ompi_crcp_coord_component_t;
extern ompi_crcp_coord_component_t mca_crcp_coord_component;
OMPI_MODULE_DECLSPEC extern ompi_crcp_coord_component_t mca_crcp_coord_component;
/*
* Local variables

Просмотреть файл

@ -52,7 +52,7 @@ extern "C" {
bool pml_crcp_wrapped;
};
typedef struct mca_pml_crcpw_component_t mca_pml_crcpw_component_t;
extern mca_pml_crcpw_component_t mca_pml_crcpw_component;
OMPI_MODULE_DECLSPEC extern mca_pml_crcpw_component_t mca_pml_crcpw_component;
struct mca_pml_crcpw_module_t {
mca_pml_base_module_t super;

Просмотреть файл

@ -117,7 +117,7 @@ OMPI_DECLSPEC extern ompi_proc_t* ompi_proc_local_proc;
* @retval OMPI_SUCESS System successfully initialized
* @retval OMPI_ERROR Initialization failed due to unspecified error
*/
int ompi_proc_init(void);
OMPI_DECLSPEC int ompi_proc_init(void);
/**
* Publish local process information
@ -135,7 +135,7 @@ int ompi_proc_init(void);
* @retval OMPI_SUCESS Information available in the modex
* @retval OMPI_ERROR Failure due to unspecified error
*/
int ompi_proc_publish_info(void);
OMPI_DECLSPEC int ompi_proc_publish_info(void);
/**
* Get data exchange information from remote processes
@ -146,7 +146,7 @@ int ompi_proc_publish_info(void);
* @retval OMPI_SUCCESS Information successfully received
* @retval OMPI_ERROR Information update failure
*/
int ompi_proc_get_info(void);
OMPI_DECLSPEC int ompi_proc_get_info(void);
/**
@ -158,7 +158,7 @@ int ompi_proc_get_info(void);
*
* @retval OMPI_SUCCESS System successfully finalized
*/
int ompi_proc_finalize(void);
OMPI_DECLSPEC int ompi_proc_finalize(void);
/**
@ -330,7 +330,7 @@ OMPI_DECLSPEC int ompi_proc_unpack(opal_buffer_t *buf,
* @retval OMPI_SUCESS System successfully refreshed
* @retval OMPI_ERROR Refresh failed due to unspecified error
*/
int ompi_proc_refresh(void);
OMPI_DECLSPEC int ompi_proc_refresh(void);
END_C_DECLS

Просмотреть файл

@ -106,7 +106,7 @@ extern "C" {
OPAL_DECLSPEC char * opal_crs_base_unique_snapshot_name(pid_t pid);
OPAL_DECLSPEC char * opal_crs_base_extract_expected_component(char *snapshot_loc, int *prev_pid);
int opal_crs_base_init_snapshot_directory(opal_crs_base_snapshot_t *snapshot);
OPAL_DECLSPEC int opal_crs_base_init_snapshot_directory(opal_crs_base_snapshot_t *snapshot);
OPAL_DECLSPEC char * opal_crs_base_get_snapshot_directory(char *uniq_snapshot_name);
/* Opens the metadata file and places all the base information in the file.
@ -114,14 +114,14 @@ extern "C" {
* 'w' = Open for writing
* 'a' = Open for writing and appending information
*/
FILE *opal_crs_base_open_metadata(opal_crs_base_snapshot_t *snapshot, char mode );
OPAL_DECLSPEC FILE *opal_crs_base_open_metadata(opal_crs_base_snapshot_t *snapshot, char mode );
/* Open the metadata file, read off the base information and
* return the component and previous pid to the caller.
* Note: component is allocated inside this function, it is the
* callers responsibility to free this memory.
*/
FILE * opal_crs_base_open_read_metadata(char *location, char **component, int *prev_pid);
OPAL_DECLSPEC FILE * opal_crs_base_open_read_metadata(char *location, char **component, int *prev_pid);
#if defined(c_plusplus) || defined(__cplusplus)