
is a lot more difficult than a PTL, and it can adapt it's behavior to the level of threading required by the user. In this case the behavior is the priorit of the PML. Therefore this information is never availale before the init function (of the PML) is called. So I try to keep nearly the same structure as it was before, with one change. When a PML get initialized it does not necessarily means it has been selected, so it does not means it has to create all it's internal structures (and select the PTL and all this stuff). They can all be done later, when a PML knows that it definitively get selected (when the enable function is called with the argument set to true). Thus, in the case of a PML close one have to check if the PML has been selected or not before trying to clean up the internals. I had to change the MPI_Init function to allow the PML to be enabled before we start adding procs inside. This commit was SVN r6434.
83 строки
2.5 KiB
C
83 строки
2.5 KiB
C
/*
|
|
* 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.
|
|
* 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>
|
|
|
|
#include "include/constants.h"
|
|
#include "opal/event/event.h"
|
|
#include "mca/mca.h"
|
|
#include "mca/base/base.h"
|
|
#include "mca/pml/pml.h"
|
|
#include "mca/ptl/ptl.h"
|
|
#include "mca/ptl/base/base.h"
|
|
|
|
extern int mca_ptl_base_open_called;
|
|
|
|
int mca_ptl_base_close(void)
|
|
{
|
|
opal_list_item_t *item;
|
|
mca_ptl_base_selected_module_t *sm;
|
|
|
|
if( 0 == mca_ptl_base_open_called ) return OMPI_ERROR;
|
|
mca_ptl_base_open_called = 0;
|
|
|
|
/* disable event processing while cleaning up ptls */
|
|
opal_event_disable();
|
|
|
|
/* Finalize all the ptl components and free their list items */
|
|
|
|
for (item = opal_list_remove_first(&mca_ptl_base_modules_initialized);
|
|
NULL != item;
|
|
item = opal_list_remove_first(&mca_ptl_base_modules_initialized)) {
|
|
sm = (mca_ptl_base_selected_module_t *) item;
|
|
|
|
/* Blatently ignore the return code (what would we do to recover,
|
|
anyway? This component is going away, so errors don't matter
|
|
anymore) */
|
|
|
|
sm->pbsm_module->ptl_finalize(sm->pbsm_module);
|
|
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) */
|
|
|
|
if (0 != opal_list_get_size(&mca_ptl_base_components_initialized)) {
|
|
mca_base_components_close(mca_ptl_base_output,
|
|
&mca_ptl_base_components_initialized, NULL);
|
|
}
|
|
OBJ_DESTRUCT( &mca_ptl_base_components_initialized );
|
|
OBJ_DESTRUCT( &mca_ptl_base_components_opened );
|
|
|
|
/* cleanup */
|
|
if( NULL != mca_ptl_base_include ) {
|
|
free(mca_ptl_base_include);
|
|
mca_ptl_base_include = NULL;
|
|
}
|
|
if( NULL != mca_ptl_base_exclude ) {
|
|
free(mca_ptl_base_exclude);
|
|
mca_ptl_base_exclude = NULL;
|
|
}
|
|
|
|
/* restore event processing */
|
|
opal_event_enable();
|
|
|
|
/* All done */
|
|
return OMPI_SUCCESS;
|
|
}
|