2005-08-30 12:59:04 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2008-02-28 05:59:07 +00:00
|
|
|
* Copyright (c) 2004-2007 The University of Tennessee and The University
|
2005-11-05 19:57:48 +00:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-08-30 12:59:04 +00: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.
|
2009-01-11 02:30:00 +00:00
|
|
|
* Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
|
2005-08-30 12:59:04 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2008-06-18 15:28:46 +00:00
|
|
|
#ifndef ORTE_DEBUGGERS_H
|
|
|
|
#define ORTE_DEBUGGERS_H
|
2005-08-30 12:59:04 +00:00
|
|
|
|
|
|
|
#include "orte_config.h"
|
|
|
|
|
2008-06-18 15:28:46 +00:00
|
|
|
#include "orte/runtime/orte_globals.h"
|
2008-06-18 03:15:56 +00:00
|
|
|
|
2007-07-10 12:53:48 +00:00
|
|
|
BEGIN_C_DECLS
|
2006-09-18 17:55:14 +00:00
|
|
|
|
2008-06-18 15:28:46 +00:00
|
|
|
void orte_run_debugger(char *basename, opal_cmd_line_t *cmd_line,
|
2008-06-09 20:34:14 +00:00
|
|
|
int argc, char *argv[], int num_procs) __opal_attribute_noreturn__;
|
2008-06-18 15:28:46 +00:00
|
|
|
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);
|
2006-09-18 17:55:14 +00:00
|
|
|
|
2008-06-18 15:28:46 +00:00
|
|
|
extern void *MPIR_Breakpoint(void);
|
2008-06-09 20:34:14 +00:00
|
|
|
|
2007-07-10 12:53:48 +00:00
|
|
|
END_C_DECLS
|
2005-08-30 12:59:04 +00:00
|
|
|
|
2008-06-18 15:28:46 +00:00
|
|
|
#endif /* ORTE_DEBUGGERS_H */
|