From d628a184117d428cf0f14e3505357cde5f8873fd Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Thu, 5 Oct 2006 05:19:03 +0000 Subject: [PATCH] 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. --- orte/tools/orterun/totalview.c | 16 ++++++++-------- orte/tools/orterun/totalview.h | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/orte/tools/orterun/totalview.c b/orte/tools/orterun/totalview.c index 6ab13abe9c..92a0cf411c 100644 --- a/orte/tools/orterun/totalview.c +++ b/orte/tools/orterun/totalview.c @@ -81,14 +81,14 @@ struct MPIR_PROCDESC { int pid; /* process pid */ }; -ORTE_DECLSPEC struct MPIR_PROCDESC *MPIR_proctable = NULL; -ORTE_DECLSPEC int MPIR_proctable_size = 0; -ORTE_DECLSPEC int MPIR_being_debugged = 0; -ORTE_DECLSPEC int MPIR_force_to_main = 0; -ORTE_DECLSPEC volatile int MPIR_debug_state = 0; -ORTE_DECLSPEC volatile int MPIR_i_am_starter = 0; -ORTE_DECLSPEC volatile int MPIR_debug_gate = 0; -ORTE_DECLSPEC volatile int MPIR_acquired_pre_main = 0; +struct MPIR_PROCDESC *MPIR_proctable = NULL; +int MPIR_proctable_size = 0; +int MPIR_being_debugged = 0; +int MPIR_force_to_main = 0; +volatile int MPIR_debug_state = 0; +volatile int MPIR_i_am_starter = 0; +volatile int MPIR_debug_gate = 0; +volatile int MPIR_acquired_pre_main = 0; /* --- end MPICH/TotalView interface definitions */ diff --git a/orte/tools/orterun/totalview.h b/orte/tools/orterun/totalview.h index a73c8caadd..d3c5e974bf 100644 --- a/orte/tools/orterun/totalview.h +++ b/orte/tools/orterun/totalview.h @@ -30,7 +30,7 @@ void orte_totalview_init_before_spawn(void); void orte_totalview_init_after_spawn(orte_jobid_t jobid); void orte_totalview_finalize(void); -ORTE_DECLSPEC extern void *MPIR_Breakpoint(void); +extern void *MPIR_Breakpoint(void); #if defined(c_plusplus) || defined(__cplusplus) }