1
1
openmpi/orte/mca/debugger/base/debugger_base_close.c
Brian Barrett 13c827dda8 Make trunk compile on Red Storm again
This commit was SVN r23622.
2010-08-17 21:51:38 +00:00

34 строки
740 B
C

/*
* Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "orte_config.h"
#include "orte/constants.h"
#include "opal/mca/mca.h"
#include "opal/mca/base/base.h"
#include "orte/mca/debugger/base/base.h"
#include "orte/mca/debugger/debugger.h"
int orte_debugger_base_close(void)
{
#if !ORTE_DISABLE_FULL_SUPPORT
if (NULL != orte_debugger.finalize) {
orte_debugger.finalize();
}
/* Close all remaining available components */
mca_base_components_close(orte_debugger_base_output,
&orte_debugger_base_components_available, NULL);
#endif
/* All done */
return ORTE_SUCCESS;
}