1
1
openmpi/orte/mca/iof/base/iof_base_close.c
Brian Barrett 761402f95f * rename ompi_list to opal_list
This commit was SVN r6322.
2005-07-03 16:22:16 +00:00

57 строки
1.6 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 "event/event.h"
#include "mca/mca.h"
#include "mca/base/base.h"
#include "mca/iof/iof.h"
#include "mca/iof/base/base.h"
#include "mca/iof/base/iof_base_endpoint.h"
int orte_iof_base_close(void)
{
opal_list_item_t* item;
/* We only need to flush if an iof component was successfully
selected */
if (orte_iof_base.iof_flush) {
orte_iof_base_flush();
orte_iof_base.iof_flush = false;
}
/* shutdown any remaining opened components */
if (0 != opal_list_get_size(&orte_iof_base.iof_components_opened)) {
mca_base_components_close(orte_iof_base.iof_output,
&orte_iof_base.iof_components_opened, NULL);
}
/* final cleanup of resources */
OMPI_THREAD_LOCK(&orte_iof_base.iof_lock);
while((item = opal_list_remove_first(&orte_iof_base.iof_endpoints)) != NULL) {
OBJ_RELEASE(item);
}
OMPI_THREAD_UNLOCK(&orte_iof_base.iof_lock);
return OMPI_SUCCESS;
}