1
1

Remove stale define. Add global variable to be used soon.

This commit was SVN r18005.
Этот коммит содержится в:
Ralph Castain 2008-03-28 02:20:37 +00:00
родитель 6ea36061cf
Коммит 6fcaa8df39
2 изменённых файлов: 6 добавлений и 6 удалений

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

@ -44,8 +44,11 @@
/* globals used by RTE */
bool orte_timing;
bool orte_debug_flag, orte_debug_daemons_flag, orte_debug_daemons_file_flag;
bool orted_spin_flag;
bool orte_debug_flag = false;
bool orte_debug_daemons_flag = false;
bool orte_debug_daemons_file_flag = false;
bool orted_spin_flag = false;
bool orte_static_ports = false;
int orte_debug_output = -1;
char **orte_launch_environ;
char **orted_cmd_line=NULL;

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

@ -282,14 +282,11 @@ ORTE_DECLSPEC extern orte_process_name_t orte_globals_name_invalid; /** instant
/* define the name of my daemon */
#define ORTE_PROC_MY_DAEMON (&orte_process_info.my_daemon)
/* define the name of my lifeline */
#define ORTE_PROC_MY_LIFELINE (orte_process_info.lifeline)
/* global variables used by RTE - instanced in orte_globals.c */
ORTE_DECLSPEC extern bool orte_debug_flag, orte_reuse_daemons, orte_timing;
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 char **orte_launch_environ;