1
1
openmpi/ompi/debuggers/debuggers.h
Shiqing Fan c51c262e67 Relevant Windows fixes for r23360.
This commit was SVN r23363.

The following SVN revision numbers were found above:
  r23360 --> open-mpi/ompi@31295e8dc2
2010-07-07 16:58:16 +00:00

52 строки
1.3 KiB
C

/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* 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,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2007-2008 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
/**
* @file
*
* MPI portion of debugger support
*/
#ifndef OMPI_DEBUGGERS_H
#define OMPI_DEBUGGERS_H
#include "ompi_config.h"
#include "orte/mca/debugger/base/base.h"
BEGIN_C_DECLS
/**
* Wait for a debugger if asked.
*/
extern void ompi_wait_for_debugger(void);
/**
* Notify a debugger that we're about to abort
*/
extern void ompi_debugger_notify_abort(char *string);
/**
* Breakpoint function for parallel debuggers.
*/
ORTE_DECLSPEC extern void *MPIR_Breakpoint(void);
END_C_DECLS
#endif /* OMPI_DEBUGGERS_H */