1
1

- Getting rid of "missing initializer" warnings

This commit was SVN r14766.
Этот коммит содержится в:
Rainer Keller 2007-05-24 19:19:52 +00:00
родитель 81df632e29
Коммит a665b7a20d
5 изменённых файлов: 27 добавлений и 3 удалений

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

@ -43,6 +43,11 @@ opal_installdirs_base_component_t mca_installdirs_env_component = {
/* Whether the component is checkpointable or not */
true
},
/* Next the opal_install_dirs_t install_dirs_data information */
{
NULL,
},
};

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

@ -73,6 +73,10 @@ orte_filem_rsh_component_t mca_filem_rsh_component = {
20
},
/* cp_command */
NULL,
/* remote_sh_command */
NULL
};

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

@ -68,11 +68,21 @@ orte_ns_base_define_data_type_not_available(
}
/**** GET PEERS ****/
int orte_ns_base_get_peers_not_available(orte_process_name_t **procs,
orte_std_cntr_t *num_procs, opal_list_t *attributes)
int
orte_ns_base_get_peers_not_available(orte_process_name_t **procs,
orte_std_cntr_t *num_procs, opal_list_t *attributes)
{
*procs = NULL;
*num_procs = 0;
ORTE_ERROR_LOG(ORTE_ERR_UNREACH);
return ORTE_ERR_UNREACH;
}
/**** FT Event ****/
int
orte_ns_base_ft_event_not_available(int state)
{
ORTE_ERROR_LOG(ORTE_ERR_UNREACH);
return ORTE_ERR_UNREACH;
}

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

@ -98,7 +98,9 @@ mca_ns_base_module_t orte_ns = {
orte_ns_base_dump_cells_not_available,
orte_ns_base_dump_jobs_not_available,
orte_ns_base_dump_tags_not_available,
orte_ns_base_dump_datatypes_not_available
orte_ns_base_dump_datatypes_not_available,
orte_ns_base_ft_event_not_available
};
bool mca_ns_base_selected = false;

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

@ -191,6 +191,9 @@ ORTE_DECLSPEC int orte_ns_base_dump_jobs_not_available(void);
ORTE_DECLSPEC int orte_ns_base_dump_tags_not_available(void);
ORTE_DECLSPEC int orte_ns_base_dump_datatypes_not_available(void);
ORTE_DECLSPEC int orte_ns_base_ft_event_not_available(int state);
/* Base functions used everywhere */
ORTE_DECLSPEC int orte_ns_base_pack_name(orte_buffer_t *buffer, void *src,
orte_std_cntr_t num_vals, orte_data_type_t type);