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