- Getting rid of "missing initializer" warnings
This commit was SVN r14766.
Этот коммит содержится в:
родитель
81df632e29
Коммит
a665b7a20d
5
opal/mca/installdirs/env/opal_installdirs_env.c
поставляемый
5
opal/mca/installdirs/env/opal_installdirs_env.c
поставляемый
@ -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);
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user