source: rtems/c/src/lib/libbsp/shared/include/mm.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 628 bytes
Line 
1/**
2 *  @file
3 *
4 *  @ingroup shared_mm
5 *
6 *  @brief MM Support
7 */
8
9/*
10 * Copyright (c) 2013 Hesham AL-Matary.
11 * Copyright (c) 2013 Gedare Bloom.
12 *
13 * The license and distribution terms for this file may be
14 * found in the file LICENSE in this distribution or at
15 * http://www.rtems.org/license/LICENSE.
16 */
17
18#ifndef __LIBBSP_MM_H
19#define __LIBBSP_MM_H
20
21#include <stdint.h>
22#include <stdlib.h>
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
28/**
29 *  @defgroup shared_mm MM Support
30 *
31 *  @ingroup shared_include
32 *
33 *  @brief MM Support Package
34 */
35
36void bsp_memory_management_initialize(void);
37
38#ifdef __cplusplus
39}
40#endif
41#endif
Note: See TracBrowser for help on using the repository browser.