summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/shared/include/mm.h
blob: 2152f686bad275d91f99cd30e67944581fef85cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
 *  @file
 *
 *  @ingroup shared_mm
 *
 *  @brief MM Support
 */

/*
 * Copyright (c) 2013 Hesham AL-Matary.
 * Copyright (c) 2013 Gedare Bloom.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#ifndef __LIBBSP_MM_H
#define __LIBBSP_MM_H

#include <stdint.h>
#include <stdlib.h>

#ifdef __cplusplus
extern "C" {
#endif

/**
 *  @defgroup shared_mm MM Support
 *
 *  @ingroup shared_include
 *
 *  @brief MM Support Package
 */

void bsp_memory_management_initialize(void);

#ifdef __cplusplus
}
#endif
#endif