2004-01-30 03:53:03 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00: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.
|
2004-11-28 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-01-30 03:53:03 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
#include "ompi_config.h"
|
2004-01-30 03:53:03 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2005-08-12 21:42:07 +00:00
|
|
|
#include "ompi/include/constants.h"
|
2004-01-30 03:53:03 +00:00
|
|
|
#include "mca/mca.h"
|
2004-03-17 18:45:16 +00:00
|
|
|
#include "mca/base/base.h"
|
|
|
|
#include "mca/coll/coll.h"
|
|
|
|
#include "mca/coll/base/base.h"
|
2004-01-30 03:53:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
int mca_coll_base_close(void)
|
|
|
|
{
|
2004-06-29 00:02:25 +00:00
|
|
|
/* Close all components that are still open. This may be the opened
|
|
|
|
list (if we're in ompi_info), or it may be the available list (if
|
|
|
|
we're anywhere else). */
|
|
|
|
|
|
|
|
if (mca_coll_base_components_opened_valid) {
|
2004-08-02 00:24:22 +00:00
|
|
|
mca_base_components_close(mca_coll_base_output,
|
|
|
|
&mca_coll_base_components_opened, NULL);
|
2004-08-11 12:47:05 +00:00
|
|
|
OBJ_DESTRUCT(&mca_coll_base_components_opened);
|
2004-06-29 00:02:25 +00:00
|
|
|
mca_coll_base_components_opened_valid = false;
|
|
|
|
} else if (mca_coll_base_components_available_valid) {
|
2004-08-02 00:24:22 +00:00
|
|
|
mca_base_components_close(mca_coll_base_output,
|
|
|
|
&mca_coll_base_components_available, NULL);
|
2004-08-11 12:47:05 +00:00
|
|
|
OBJ_DESTRUCT(&mca_coll_base_components_available);
|
2004-06-29 00:02:25 +00:00
|
|
|
mca_coll_base_components_available_valid = false;
|
|
|
|
}
|
2004-01-30 03:53:03 +00:00
|
|
|
|
|
|
|
/* All done */
|
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
return OMPI_SUCCESS;
|
2004-01-30 03:53:03 +00:00
|
|
|
}
|