1
1
openmpi/orte/mca/fddp/base/fddp_base_close.c
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

39 строки
843 B
C

/*
* Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
*
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "orte_config.h"
#include "orte/constants.h"
#include <stdio.h>
#include "opal/mca/mca.h"
#include "opal/mca/base/base.h"
#include "orte/mca/fddp/base/base.h"
int orte_fddp_base_close(void)
{
/* If we have a selected component and module, then finalize it */
if (NULL != orte_fddp.finalize) {
orte_fddp.finalize();
}
/* Close all remaining available components (may be one if this is a
OpenRTE program, or [possibly] multiple if this is ompi_info) */
mca_base_components_close(orte_fddp_base_output,
&mca_fddp_base_components_available, NULL);
/* All done */
return ORTE_SUCCESS;
}