1
1
openmpi/ompi/mca/rte/pmi/rte_pmi_internal.h
Brian Barrett f42783ae1a Move the RTE framework change into the trunk. With this change, all non-CR
runtime code goes through one of the rte, dpm, or pubsub frameworks.

This commit was SVN r27934.
2013-01-27 23:25:10 +00:00

31 строка
619 B
C

/*
* Copyright (c) 2013 Sandia National Laboratories. All rights reserved.
*
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*
*/
#ifndef MCA_OMPI_RTE_PMI_INTERNAL_H
#define MCA_OMPI_RTE_PMI_INTERNAL_H
BEGIN_C_DECLS
extern int ompi_rte_pmi_name_init(void);
extern int ompi_rte_pmi_name_fini(void);
extern int ompi_rte_pmi_db_init(void);
extern void ompi_rte_pmi_db_fini(void);
#define OMPI_DB_BIND_LEVEL "ompi.bind_level"
#define OMPI_DB_BIND_INDEX "ompi.bind_index"
#define OMPI_DB_NODERANK "ompi.noderank"
#define OMPI_DB_RTE_INFO "ompi.rte-info"
END_C_DECLS
#endif