4bd25f587c
he errmgr framework so that it can decide how to respond - which for now at least is just to check for lifeline and abort if so. Add a new error constant to indicate that the error is "unrecoverable" so the oob can know it needs to abort. This commit was SVN r23112.
36 строки
559 B
C
36 строки
559 B
C
/*
|
|
* Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
|
|
*
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
*/
|
|
|
|
#ifndef MCA_ERRMGR_APP_EXPORT_H
|
|
#define MCA_ERRMGR_APP_EXPORT_H
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "orte/mca/errmgr/errmgr.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
/*
|
|
* Local Component structures
|
|
*/
|
|
|
|
ORTE_MODULE_DECLSPEC extern orte_errmgr_base_component_t mca_errmgr_app_component;
|
|
|
|
ORTE_DECLSPEC extern orte_errmgr_base_module_t orte_errmgr_app_module;
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* MCA_ERRMGR_APP_EXPORT_H */
|