![Ralph Castain](/assets/img/avatar_default.png)
Since the MPIR symbols are now included in the ORTE library, remove duplicate declarations in OMPI and replace them with extern references to their ORTE instantiations. This commit was SVN r23360.
32 строки
702 B
C
32 строки
702 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 (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);
|
|
|
|
/* All done */
|
|
return ORTE_SUCCESS;
|
|
}
|