1
1
openmpi/orte/mca/state/dbm/state_dbm.h
Ralph Castain ffd5be6aa1 Add a new framework to ORTE for saving and recovering state information. Two components are included that use the db or dbm library for storing the data, with a distributed hash table component coming later.
Note that each of these components will only be selected if specifically requested - otherwise, a "NULL" component will be used.  The framework is only opened by the HNP and orteds, though neither is currently coded to save/restore state

This commit was SVN r22839.
2010-03-16 20:59:48 +00:00

32 строки
677 B
C

/*
* Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#ifndef ORTE_STATE_DBM_H
#define ORTE_STATE_DBM_H
#include "orte/mca/state/state.h"
BEGIN_C_DECLS
/*
* Module open / close
*/
int orte_state_dbm_component_open(void);
int orte_state_dbm_component_close(void);
int orte_state_dbm_component_query(mca_base_module_t **module, int *priority);
ORTE_MODULE_DECLSPEC extern orte_state_base_component_t mca_state_dbm_component;
ORTE_DECLSPEC extern orte_state_base_module_t orte_state_dbm_module;
extern char *orte_state_dbm_directory;
END_C_DECLS
#endif /* ORTE_STATE_DBM_H */