43 строки
1.0 KiB
C
43 строки
1.0 KiB
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/rmcast/base/base.h"
|
|
#include "orte/mca/rmcast/base/private.h"
|
|
|
|
int orte_rmcast_base_close(void)
|
|
{
|
|
if (!orte_rmcast_base.opened) {
|
|
return ORTE_SUCCESS;
|
|
}
|
|
|
|
/* finalize the active module */
|
|
if (NULL != orte_rmcast.finalize) {
|
|
orte_rmcast.finalize();
|
|
}
|
|
|
|
/* Close all remaining available components (may be one if this is a
|
|
Open RTE program, or [possibly] multiple if this is ompi_info) */
|
|
|
|
mca_base_components_close(orte_rmcast_base.rmcast_output,
|
|
&orte_rmcast_base.rmcast_opened, NULL);
|
|
|
|
orte_rmcast_base.opened = false;
|
|
OBJ_DESTRUCT(&orte_rmcast_base.lock);
|
|
OBJ_DESTRUCT(&orte_rmcast_base.cond);
|
|
return ORTE_SUCCESS;
|
|
}
|