2005-08-30 16:59:04 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-09-18 21:55:14 +04:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-08-30 16:59:04 +04:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ORTERUN_TOTALVIEW_H
|
|
|
|
#define ORTERUN_TOTALVIEW_H
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
|
2006-09-18 21:55:14 +04:00
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-11-20 19:06:53 +03:00
|
|
|
void orte_run_debugger(char *basename, int argc, char *argv[]);
|
2005-08-30 21:29:43 +04:00
|
|
|
void orte_totalview_init_before_spawn(void);
|
|
|
|
void orte_totalview_init_after_spawn(orte_jobid_t jobid);
|
2005-08-30 16:59:04 +04:00
|
|
|
void orte_totalview_finalize(void);
|
2006-09-18 21:55:14 +04:00
|
|
|
|
2006-10-05 09:19:03 +04:00
|
|
|
extern void *MPIR_Breakpoint(void);
|
2006-09-18 21:55:14 +04:00
|
|
|
|
|
|
|
#if defined(c_plusplus) || defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2005-08-30 16:59:04 +04:00
|
|
|
|
|
|
|
#endif /* ORTERUN_TOTALVIEW_H */
|