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.
|
2006-07-27 18:44:54 +04:00
|
|
|
* Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
|
2006-07-27 06:56:02 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
2006-07-27 18:44:54 +04:00
|
|
|
#include "opal_config.h"
|
2006-07-27 06:56:02 +04:00
|
|
|
|
2006-07-27 18:44:54 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "opal/constants.h"
|
|
|
|
#include "opal/mca/backtrace/backtrace.h"
|
2006-07-27 06:56:02 +04:00
|
|
|
|
2013-12-18 21:57:37 +04:00
|
|
|
int
|
|
|
|
opal_backtrace_print(FILE *file, char *prefix, int strip)
|
2006-07-27 06:56:02 +04:00
|
|
|
{
|
2013-12-18 21:57:37 +04:00
|
|
|
return OPAL_ERR_NOT_IMPLEMENTED;
|
2006-07-27 06:56:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int
|
2006-07-27 18:44:54 +04:00
|
|
|
opal_backtrace_buffer(char ***message_out, int *len_out)
|
2006-07-27 06:56:02 +04:00
|
|
|
{
|
2006-07-27 18:44:54 +04:00
|
|
|
*message_out = NULL;
|
2006-07-27 06:56:02 +04:00
|
|
|
*len_out = 0;
|
|
|
|
|
2006-07-27 18:44:54 +04:00
|
|
|
return OPAL_ERR_NOT_IMPLEMENTED;
|
2006-07-27 06:56:02 +04:00
|
|
|
}
|