2005-03-14 23:57:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "include/orte_constants.h"
|
|
|
|
#include "mca/mca.h"
|
|
|
|
#include "mca/base/base.h"
|
|
|
|
#include "mca/pls/base/base.h"
|
2005-03-29 00:07:19 +04:00
|
|
|
#include "util/output.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
|
2005-04-15 21:04:57 +04:00
|
|
|
int orte_pls_base_finalize(void)
|
2005-03-14 23:57:21 +03:00
|
|
|
{
|
|
|
|
/* Finalize all available modules */
|
2005-04-01 03:25:24 +04:00
|
|
|
if (orte_pls_base.pls_available_valid) {
|
2005-04-15 21:04:57 +04:00
|
|
|
ompi_list_item_t* item;
|
2005-04-01 03:25:24 +04:00
|
|
|
while (NULL !=
|
|
|
|
(item = ompi_list_remove_first(&orte_pls_base.pls_available))) {
|
|
|
|
orte_pls_base_cmp_t* cmp = (orte_pls_base_cmp_t*) item;
|
|
|
|
ompi_output(orte_pls_base.pls_output,
|
|
|
|
"orte:base:close: finalizing module %s",
|
|
|
|
cmp->component->pls_version.mca_component_name);
|
|
|
|
if (NULL != cmp->module->finalize) {
|
|
|
|
cmp->module->finalize();
|
|
|
|
}
|
|
|
|
OBJ_RELEASE(cmp);
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
|
|
|
}
|
2005-04-01 03:25:24 +04:00
|
|
|
orte_pls_base.pls_available_valid = false;
|
2005-04-15 21:04:57 +04:00
|
|
|
}
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
|
2005-04-15 21:04:57 +04:00
|
|
|
int orte_pls_base_close(void)
|
|
|
|
{
|
|
|
|
/* Close all remaining open components */
|
2005-04-01 03:25:24 +04:00
|
|
|
if (orte_pls_base.pls_opened_valid) {
|
|
|
|
mca_base_components_close(orte_pls_base.pls_output,
|
|
|
|
&orte_pls_base.pls_opened, NULL);
|
|
|
|
}
|
|
|
|
orte_pls_base.pls_opened_valid = false;
|
2005-03-14 23:57:21 +03:00
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|