2006-07-27 06:56:02 +04:00
|
|
|
/*
|
|
|
|
* 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-2006 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OPAL_MCA_BACKTRACE_BACKTRACE_H
|
|
|
|
#define OPAL_MCA_BACKTRACE_BACKTRACE_H
|
|
|
|
|
|
|
|
#include "opal_config.h"
|
|
|
|
|
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
BEGIN_C_DECLS
|
2006-10-05 09:16:07 +04:00
|
|
|
|
2006-07-27 06:56:02 +04:00
|
|
|
/*
|
|
|
|
* Most of this file is just for ompi_info. There are two interface
|
|
|
|
* functions, both of which are called directly. The joy of link-time
|
|
|
|
* components.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* print back trace to FILE file
|
|
|
|
*
|
|
|
|
* \note some attempts made to be signal safe.
|
|
|
|
*/
|
2006-10-05 09:16:07 +04:00
|
|
|
OPAL_DECLSPEC void opal_backtrace_print(FILE *file);
|
2006-07-27 06:56:02 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Return back trace in buffer. buffer will be allocated by the
|
|
|
|
* backtrace component, but should be free'ed by the caller.
|
|
|
|
*
|
|
|
|
* \note Probably bad to call this from a signal handler.
|
|
|
|
*
|
|
|
|
*/
|
2006-10-05 09:16:07 +04:00
|
|
|
OPAL_DECLSPEC int opal_backtrace_buffer(char*** messages, int *len);
|
2006-07-27 06:56:02 +04:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2008-07-29 02:40:57 +04:00
|
|
|
* Structure for backtrace components.
|
2006-07-27 06:56:02 +04:00
|
|
|
*/
|
2008-07-29 02:40:57 +04:00
|
|
|
struct opal_backtrace_base_component_2_0_0_t {
|
2006-07-27 06:56:02 +04:00
|
|
|
/** MCA base component */
|
|
|
|
mca_base_component_t backtracec_version;
|
|
|
|
/** MCA base data */
|
2008-07-29 02:40:57 +04:00
|
|
|
mca_base_component_data_t backtracec_data;
|
2006-07-27 06:56:02 +04:00
|
|
|
};
|
|
|
|
/**
|
|
|
|
* Convenience typedef
|
|
|
|
*/
|
2008-07-29 02:40:57 +04:00
|
|
|
typedef struct opal_backtrace_base_component_2_0_0_t opal_backtrace_base_component_2_0_0_t;
|
2006-07-27 06:56:02 +04:00
|
|
|
|
|
|
|
/*
|
2008-07-29 02:40:57 +04:00
|
|
|
* Macro for use in components that are of type backtrace
|
2006-07-27 06:56:02 +04:00
|
|
|
*/
|
2008-07-29 02:40:57 +04:00
|
|
|
#define OPAL_BACKTRACE_BASE_VERSION_2_0_0 \
|
|
|
|
MCA_BASE_VERSION_2_0_0, \
|
|
|
|
"backtrace", 2, 0, 0
|
2006-07-27 06:56:02 +04:00
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
END_C_DECLS
|
2006-10-05 09:16:07 +04:00
|
|
|
|
2006-07-27 06:56:02 +04:00
|
|
|
#endif /* OPAL_MCA_BACKTRACE_BACKTRACE_H */
|