2005-08-14 00:19:24 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-08-23 04:29:35 +04:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2015-06-24 06:59:57 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2005-08-14 00:19:24 +04:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2005-08-14 00:19:24 +04:00
|
|
|
* Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2005-08-14 00:19:24 +04:00
|
|
|
* $HEADER$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OPAL_MEMORY_BASE_H
|
|
|
|
#define OPAL_MEMORY_BASE_H
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal_config.h"
|
2013-03-28 01:11:47 +04:00
|
|
|
#include "opal/mca/base/mca_base_framework.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/mca/memory/memory.h"
|
2005-08-14 00:19:24 +04:00
|
|
|
|
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
BEGIN_C_DECLS
|
2005-08-14 00:19:24 +04:00
|
|
|
|
2013-03-28 01:11:47 +04:00
|
|
|
/**
|
|
|
|
* Framework struct declaration for this framework
|
|
|
|
*/
|
|
|
|
OPAL_DECLSPEC extern mca_base_framework_t opal_memory_base_framework;
|
2005-08-14 00:19:24 +04:00
|
|
|
|
2016-03-25 23:03:19 +03:00
|
|
|
OPAL_DECLSPEC void opal_memory_base_malloc_init_hook (void);
|
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
END_C_DECLS
|
2005-08-14 00:19:24 +04:00
|
|
|
#endif /* OPAL_BASE_MEMORY_H */
|