1
1
openmpi/orte/mca/fddp/trend/fddp_trend.h
Ralph Castain c3c642aa0d Add two new frameworks for sensing and predicting faults. This is just the bare-bones plumbing for now - will instantiate soon.
No ess modules reference these frameworks yet, so they are completely inactive.

This commit was SVN r21847.
2009-08-20 04:27:16 +00:00

36 строки
629 B
C

/*
* Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
*
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
/**
* @file
*
*/
#ifndef ORTE_FDDP_TREND_H
#define ORTE_FDDP_TREND_H
#include "orte_config.h"
#include "orte/mca/fddp/fddp.h"
BEGIN_C_DECLS
struct orte_fddp_trend_component_t {
orte_fddp_base_component_t super;
int window_size;
};
typedef struct orte_fddp_trend_component_t orte_fddp_trend_component_t;
ORTE_MODULE_DECLSPEC extern orte_fddp_trend_component_t mca_fddp_trend_component;
extern orte_fddp_base_module_t orte_fddp_trend_module;
END_C_DECLS
#endif