2008-02-28 04:57:57 +03:00
|
|
|
/*
|
2008-05-06 22:08:45 +04:00
|
|
|
* Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana
|
2008-02-28 04:57:57 +03:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* 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 "opal/mca/base/mca_base_component_repository.h"
|
2008-06-09 18:53:58 +04:00
|
|
|
#include "orte/util/show_help.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
|
|
|
|
#include "orte/mca/ess/base/base.h"
|
|
|
|
|
|
|
|
extern opal_list_t orte_ess_base_components_available;
|
|
|
|
|
|
|
|
int
|
|
|
|
orte_ess_base_close(void)
|
|
|
|
{
|
|
|
|
opal_list_item_t *item;
|
|
|
|
mca_base_component_list_item_t *cli;
|
|
|
|
|
|
|
|
/* unload all remaining components */
|
|
|
|
while (NULL != (item = opal_list_remove_first(&orte_ess_base_components_available))) {
|
|
|
|
orte_ess_base_component_t* component;
|
|
|
|
cli = (mca_base_component_list_item_t *) item;
|
|
|
|
component = (orte_ess_base_component_t *) cli->cli_component;
|
2008-06-09 18:53:58 +04:00
|
|
|
opal_output_verbose(10, 0,
|
2008-02-28 04:57:57 +03:00
|
|
|
"orte_ess_base_close: module %s unloaded",
|
2008-05-06 22:08:45 +04:00
|
|
|
component->base_version.mca_component_name);
|
2008-02-28 04:57:57 +03:00
|
|
|
mca_base_component_repository_release((mca_base_component_t *) component);
|
|
|
|
OBJ_RELEASE(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
OBJ_DESTRUCT(&orte_ess_base_components_available);
|
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|