1
1
openmpi/orte/mca/iof/base/iof_base_close.c
Brian Barrett 7c247eea01 * Add a finalize function for iof framework and add a finalize function for
the svc component so that it can disable the rml exception callback, fixing
  a race condition in the shutdown mechanism of orte.

  This should probably go to the v1.0 branch.

This commit was SVN r8893.
2006-02-03 21:01:11 +00:00

69 строки
2.0 KiB
C

/*
* 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.
* 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/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;
}
/* finalize component */
if (NULL != orte_iof.iof_finalize) {
orte_iof.iof_finalize();
}
/* 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 */
OPAL_THREAD_LOCK(&orte_iof_base.iof_lock);
while((item = opal_list_remove_first(&orte_iof_base.iof_endpoints)) != NULL) {
OBJ_RELEASE(item);
}
OPAL_THREAD_UNLOCK(&orte_iof_base.iof_lock);
if (NULL != orte_iof_base.iof_service) {
orte_ns.free_name(&(orte_iof_base.iof_service));
}
return OMPI_SUCCESS;
}