2210989e2d
This commit was SVN r21989.
33 строки
611 B
C
33 строки
611 B
C
/*
|
|
* Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
|
|
*
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef ORTE_ESS_CM_H
|
|
#define ORTE_ESS_CM_H
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
/*
|
|
* Module open / close
|
|
*/
|
|
int orte_ess_cm_component_open(void);
|
|
int orte_ess_cm_component_close(void);
|
|
int orte_ess_cm_component_query(mca_base_module_t **module, int *priority);
|
|
|
|
typedef struct {
|
|
orte_ess_base_component_t super;
|
|
int max_slots;
|
|
} orte_ess_cm_component_t;
|
|
|
|
ORTE_MODULE_DECLSPEC extern orte_ess_cm_component_t mca_ess_cm_component;
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* ORTE_ESS_CM_H */
|