1
1

Right now there is no support for TotalView on Windows. Therefore, we don't

really care how these functions and variables are declared.

This commit was SVN r11996.
Этот коммит содержится в:
George Bosilca 2006-10-05 05:19:03 +00:00
родитель 59275a0958
Коммит d628a18411
2 изменённых файлов: 9 добавлений и 9 удалений

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

@ -81,14 +81,14 @@ struct MPIR_PROCDESC {
int pid; /* process pid */ int pid; /* process pid */
}; };
ORTE_DECLSPEC struct MPIR_PROCDESC *MPIR_proctable = NULL; struct MPIR_PROCDESC *MPIR_proctable = NULL;
ORTE_DECLSPEC int MPIR_proctable_size = 0; int MPIR_proctable_size = 0;
ORTE_DECLSPEC int MPIR_being_debugged = 0; int MPIR_being_debugged = 0;
ORTE_DECLSPEC int MPIR_force_to_main = 0; int MPIR_force_to_main = 0;
ORTE_DECLSPEC volatile int MPIR_debug_state = 0; volatile int MPIR_debug_state = 0;
ORTE_DECLSPEC volatile int MPIR_i_am_starter = 0; volatile int MPIR_i_am_starter = 0;
ORTE_DECLSPEC volatile int MPIR_debug_gate = 0; volatile int MPIR_debug_gate = 0;
ORTE_DECLSPEC volatile int MPIR_acquired_pre_main = 0; volatile int MPIR_acquired_pre_main = 0;
/* --- end MPICH/TotalView interface definitions */ /* --- end MPICH/TotalView interface definitions */

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

@ -30,7 +30,7 @@ void orte_totalview_init_before_spawn(void);
void orte_totalview_init_after_spawn(orte_jobid_t jobid); void orte_totalview_init_after_spawn(orte_jobid_t jobid);
void orte_totalview_finalize(void); void orte_totalview_finalize(void);
ORTE_DECLSPEC extern void *MPIR_Breakpoint(void); extern void *MPIR_Breakpoint(void);
#if defined(c_plusplus) || defined(__cplusplus) #if defined(c_plusplus) || defined(__cplusplus)
} }