1
1
openmpi/src/runtime/lam_rte_finalize.c
Jeff Squyres 251f68b94f Re-separate out the always-installable headers from the
LAM-development headers.

This commit was SVN r925.
2004-03-18 21:35:28 +00:00

36 строки
554 B
C

/*
* $HEADER$
*/
/** @file **/
#include "lam_config.h"
#include "include/constants.h"
#include "runtime/runtime.h"
#include "util/output.h"
#include "threads/mutex.h"
#include "mca/pcm/base/base.h"
#include "mca/oob/base/base.h"
#include "mca/registry/base/base.h"
/**
* Leave a LAM RTE.
*
* @retval LAM_SUCCESS Upon success.
* @retval LAM_ERROR Upon failure.
*
* This function performs
*/
int lam_rte_finalize(void)
{
mca_registry_base_close();
mca_oob_base_close();
mca_pcm_base_close();
/* All done */
return LAM_SUCCESS;
}