2005-05-19 17:33:55 +04:00
|
|
|
/*
|
|
|
|
* 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$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** @file **/
|
|
|
|
|
2005-05-22 22:40:03 +04:00
|
|
|
#include "orte_config.h"
|
|
|
|
|
2005-08-13 00:46:25 +04:00
|
|
|
#include "orte/include/orte_constants.h"
|
2005-07-04 05:36:20 +04:00
|
|
|
#include "opal/util/malloc.h"
|
2005-07-04 03:31:27 +04:00
|
|
|
#include "opal/util/output.h"
|
2005-08-10 02:40:42 +04:00
|
|
|
#include "opal/memory/memory.h"
|
2005-08-13 00:46:25 +04:00
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
#include "opal/runtime/opal.h"
|
2005-08-14 21:23:34 +04:00
|
|
|
#include "opal/mca/memory/base/base.h"
|
2005-05-19 17:33:55 +04:00
|
|
|
|
|
|
|
/**
|
2005-05-22 22:40:03 +04:00
|
|
|
* Initialize the OPAL utilities
|
2005-05-19 17:33:55 +04:00
|
|
|
*
|
|
|
|
* @retval ORTE_SUCCESS Upon success.
|
|
|
|
* @retval ORTE_ERROR Upon failure.
|
|
|
|
*
|
|
|
|
* This function performs
|
|
|
|
*/
|
2005-05-22 22:40:03 +04:00
|
|
|
int opal_init(void)
|
|
|
|
{
|
|
|
|
/* initialize the memory allocator */
|
2005-07-04 05:36:20 +04:00
|
|
|
opal_malloc_init();
|
2005-05-22 22:40:03 +04:00
|
|
|
|
2005-08-10 02:40:42 +04:00
|
|
|
/* initialize the memory manager / tracker */
|
|
|
|
opal_mem_free_init();
|
|
|
|
|
2005-05-22 22:40:03 +04:00
|
|
|
/* initialize the output system */
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output_init();
|
2005-05-22 22:40:03 +04:00
|
|
|
|
|
|
|
/* initialize the mca */
|
|
|
|
mca_base_open();
|
2005-05-19 17:33:55 +04:00
|
|
|
|
2005-08-14 21:23:34 +04:00
|
|
|
/* open the memory manager components. Memory hooks may be
|
|
|
|
triggered before this (any time after mem_free_init(),
|
|
|
|
actually). This is a hook available for memory manager hooks
|
|
|
|
without good initialization routine support */
|
|
|
|
opal_memory_base_open();
|
|
|
|
|
2005-05-22 22:40:03 +04:00
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
2005-06-08 23:03:29 +04:00
|
|
|
|