1
1

MPIR_Breakpoint should be externally visible in order to allow the

debugger to find the symbol in our libs.

This commit was SVN r22032.
Этот коммит содержится в:
George Bosilca 2009-09-30 04:07:55 +00:00
родитель a88b97f89f
Коммит a6a6df0c48
2 изменённых файлов: 10 добавлений и 5 удалений

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

@ -2,7 +2,7 @@
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2005 The University of Tennessee and The University
* Copyright (c) 2004-2009 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
@ -33,12 +33,17 @@ BEGIN_C_DECLS
/**
* Wait for a debugger if asked.
*/
OMPI_DECLSPEC void ompi_wait_for_debugger(void);
extern void ompi_wait_for_debugger(void);
/**
* Notify a debugger that we're about to abort
*/
OMPI_DECLSPEC void ompi_debugger_notify_abort(char *string);
extern void ompi_debugger_notify_abort(char *string);
/**
* Breakpoint function for parallel debuggers.
*/
OMPI_DECLSPEC void *MPIR_Breakpoint(void);
END_C_DECLS

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

@ -2,7 +2,7 @@
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2007 The University of Tennessee and The University
* Copyright (c) 2004-2009 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
@ -32,7 +32,7 @@ void orte_debugger_init_before_spawn(orte_job_t *jdata);
void orte_debugger_init_after_spawn(orte_job_t *jdata);
void orte_debugger_finalize(void);
extern void *MPIR_Breakpoint(void);
ORTE_DECLSPEC void *MPIR_Breakpoint(void);
END_C_DECLS