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.
|
2008-02-28 08:59:07 +03:00
|
|
|
* Copyright (c) 2004-2007 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.
|
2007-07-10 16:53:48 +04:00
|
|
|
* Copyright (c) 2007 Cisco, Inc. All rights reserved.
|
2005-08-30 16:59:04 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ORTERUN_TOTALVIEW_H
|
|
|
|
#define ORTERUN_TOTALVIEW_H
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
|
2007-07-10 16:53:48 +04:00
|
|
|
BEGIN_C_DECLS
|
2006-09-18 21:55:14 +04:00
|
|
|
|
2007-07-10 16:53:48 +04:00
|
|
|
void orte_run_debugger(char *basename, opal_cmd_line_t *cmd_line,
|
2008-02-28 08:59:07 +03:00
|
|
|
int argc, char *argv[]) __opal_attribute_noreturn__;
|
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
|
|
|
|
2008-02-28 08:59:07 +03:00
|
|
|
ORTE_DECLSPEC extern void *MPIR_Breakpoint(void);
|
2006-09-18 21:55:14 +04:00
|
|
|
|
2007-07-10 16:53:48 +04:00
|
|
|
END_C_DECLS
|
2005-08-30 16:59:04 +04:00
|
|
|
|
|
|
|
#endif /* ORTERUN_TOTALVIEW_H */
|