1
1
Add missing variables!

This commit was SVN r18063.
Этот коммит содержится в:
Ralph Castain 2008-04-01 20:32:17 +00:00
родитель 51533c9340
Коммит 8dca132604
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -49,6 +49,7 @@ bool orte_debug_daemons_flag = false;
bool orte_debug_daemons_file_flag = false;
bool orted_spin_flag = false;
bool orte_static_ports = false;
bool orte_keep_fqdn_hostnames = false;
int orte_debug_output = -1;
char **orte_launch_environ;
char **orted_cmd_line=NULL;
@ -155,6 +156,12 @@ int orte_register_params(void)
false, false, NULL, &orte_default_hostfile);
/* whether or not to keep FQDN hostnames */
mca_base_param_reg_int_name("orte", "keep_fqdn_hostnames",
"Whether or not to keep FQDN hostnames [default: no]",
false, false, (int)false, &value);
orte_keep_fqdn_hostnames = OPAL_INT_TO_BOOL(value);
/* All done */
params_set = true;
return ORTE_SUCCESS;

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

@ -288,6 +288,7 @@ ORTE_DECLSPEC extern bool orte_debug_daemons_flag, orte_debug_daemons_file_flag;
ORTE_DECLSPEC extern bool orted_spin_flag;
ORTE_DECLSPEC extern bool orte_static_ports;
ORTE_DECLSPEC extern int orte_debug_output;
ORTE_DECLSPEC extern bool orte_keep_fqdn_hostnames;
ORTE_DECLSPEC extern char **orte_launch_environ;
ORTE_DECLSPEC extern char **orted_cmd_line;