365cf48db5
This commit was SVN r28239.
42 строки
1.2 KiB
C
42 строки
1.2 KiB
C
/*
|
|
* Copyright (c) 2004-2010 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 "opal_config.h"
|
|
|
|
#include "opal/mca/mca.h"
|
|
#include "opal/mca/base/base.h"
|
|
#include "opal/constants.h"
|
|
#include "opal/mca/crs/crs.h"
|
|
#include "opal/mca/crs/base/base.h"
|
|
|
|
int opal_crs_base_close(void)
|
|
{
|
|
if( !opal_cr_is_enabled ) {
|
|
opal_output_verbose(10, opal_crs_base_framework.framework_output,
|
|
"crs:close: FT is not enabled, skipping!");
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
/* Call the component's finalize routine */
|
|
if( NULL != opal_crs.crs_finalize ) {
|
|
opal_crs.crs_finalize();
|
|
}
|
|
|
|
/* Close all available modules that are open */
|
|
return mca_base_framework_components_close (&opal_crs_base_framework,
|
|
NULL);
|
|
}
|