2005-05-24 02:06:50 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* 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.
|
2005-05-24 02:06:50 +04:00
|
|
|
* 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 "ompi_config.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2005-08-13 01:42:07 +04:00
|
|
|
#include "ompi/include/constants.h"
|
2005-07-04 03:09:55 +04:00
|
|
|
#include "opal/event/event.h"
|
2005-05-24 02:06:50 +04:00
|
|
|
#include "mca/mca.h"
|
|
|
|
#include "mca/base/base.h"
|
|
|
|
#include "mca/pml/pml.h"
|
2005-06-30 06:08:24 +04:00
|
|
|
#include "mca/btl/btl.h"
|
|
|
|
#include "mca/btl/base/base.h"
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
|
2005-06-30 06:08:24 +04:00
|
|
|
int mca_btl_base_close(void)
|
2005-05-24 02:06:50 +04:00
|
|
|
{
|
2005-07-03 20:22:16 +04:00
|
|
|
opal_list_item_t *item;
|
2005-06-30 06:08:24 +04:00
|
|
|
mca_btl_base_selected_module_t *sm;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2005-06-30 06:08:24 +04:00
|
|
|
/* disable event processing while cleaning up btls */
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_event_disable();
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2005-06-30 06:08:24 +04:00
|
|
|
/* Finalize all the btl components and free their list items */
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2005-07-03 20:22:16 +04:00
|
|
|
for (item = opal_list_remove_first(&mca_btl_base_modules_initialized);
|
2005-05-24 02:06:50 +04:00
|
|
|
NULL != item;
|
2005-07-03 20:22:16 +04:00
|
|
|
item = opal_list_remove_first(&mca_btl_base_modules_initialized)) {
|
2005-06-30 06:08:24 +04:00
|
|
|
sm = (mca_btl_base_selected_module_t *) item;
|
2005-05-24 02:06:50 +04:00
|
|
|
|
2005-06-30 06:08:24 +04:00
|
|
|
/* Blatebtly ignore the return code (what would we do to recover,
|
2005-05-24 02:06:50 +04:00
|
|
|
anyway? This component is going away, so errors don't matter
|
|
|
|
anymore) */
|
|
|
|
|
2005-06-30 06:08:24 +04:00
|
|
|
sm->btl_module->btl_finalize(sm->btl_module);
|
2005-05-24 02:06:50 +04:00
|
|
|
free(sm);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Close all remaining opened components (may be one if this is a
|
|
|
|
OMPI RTE program, or [possibly] multiple if this is ompi_info) */
|
2005-06-08 00:19:44 +04:00
|
|
|
|
2005-07-03 20:22:16 +04:00
|
|
|
if (0 != opal_list_get_size(&mca_btl_base_components_opened)) {
|
2005-06-30 06:08:24 +04:00
|
|
|
mca_base_components_close(mca_btl_base_output,
|
|
|
|
&mca_btl_base_components_opened, NULL);
|
2005-05-24 02:06:50 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* cleanup */
|
2005-06-30 06:08:24 +04:00
|
|
|
if(NULL != mca_btl_base_include)
|
|
|
|
free(mca_btl_base_include);
|
|
|
|
if(NULL != mca_btl_base_exclude)
|
|
|
|
free(mca_btl_base_exclude);
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
/* restore event processing */
|
2005-07-04 03:09:55 +04:00
|
|
|
opal_event_enable();
|
2005-05-24 02:06:50 +04:00
|
|
|
|
|
|
|
/* All done */
|
|
|
|
return OMPI_SUCCESS;
|
|
|
|
}
|