
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.
34 строки
619 B
C
34 строки
619 B
C
/*
|
|
* Copyright (c) 2012 Oak Ridge National Labs. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef ORCA_RUNTIME_H
|
|
#define ORCA_RUNTIME_H
|
|
|
|
#include "orca_config.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
|
/*******************************************
|
|
* Global Variables
|
|
*******************************************/
|
|
/*
|
|
* Shared counter for the number of times init/finalize have been called
|
|
*/
|
|
ORCA_DECLSPEC extern int orca_init_counter;
|
|
|
|
|
|
/*******************************************
|
|
* ...
|
|
*******************************************/
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* ORCA_RUNTIME_H */
|