1
1
openmpi/opal/mca/db/base/db_base_close.c
Nathan Hjelm 365cf48db5 Update OPAL frameworks to use the MCA framework system.
This commit was SVN r28239.
2013-03-27 21:11:47 +00:00

38 строки
760 B
C

/*
* Copyright (c) 2010 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2012 Los Alamos National Security, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "opal_config.h"
#include "opal/constants.h"
#include <stdio.h>
#include "opal/mca/mca.h"
#include "opal/util/output.h"
#include "opal/mca/base/base.h"
#include "opal/mca/base/mca_base_component_repository.h"
#include "opal/mca/db/base/base.h"
extern opal_list_t opal_db_base_components_available;
int
opal_db_base_close(void);
int
opal_db_base_close(void)
{
if (NULL != opal_db.finalize) {
opal_db.finalize();
}
return mca_base_framework_components_close(&opal_db_base_framework, NULL);
}