
This is a runtime interposition project that sits between the OMPI and ORTE layers in Open MPI. The project is described on the wiki: https://svn.open-mpi.org/trac/ompi/wiki/Runtime_Interposition And on this email thread: http://www.open-mpi.org/community/lists/devel/2012/06/11109.php This commit was SVN r26670.
22 строки
372 B
C
22 строки
372 B
C
/*
|
|
* Copyright (c) 2012 Oak Ridge National Labs. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef _ORCA_ERROR_STRINGS_H_
|
|
#define _ORCA_ERROR_STRINGS_H_
|
|
|
|
#include "orca_config.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
ORCA_DECLSPEC int orca_err2str(int errnum, const char **errmsg);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* _ORCA_ERROR_STRINGS_H_ */
|