5fd742e769
about to abort. Fixes trac:1509. This commit was SVN r19596. The following Trac tickets were found above: Ticket 1509 --> https://svn.open-mpi.org/trac/ompi/ticket/1509
46 строки
1.2 KiB
C
46 строки
1.2 KiB
C
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2005 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"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
/**
|
|
* Wait for a debugger if asked.
|
|
*/
|
|
OMPI_DECLSPEC void ompi_wait_for_debugger(void);
|
|
|
|
/**
|
|
* Notify a debugger that we're about to abort
|
|
*/
|
|
OMPI_DECLSPEC void ompi_debugger_notify_abort(char *string);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* OMPI_DEBUGGERS_H */
|