summaryrefslogtreecommitdiffstats
path: root/bsps/include/bsp/mm.h
diff options
context:
space:
mode:
Diffstat (limited to 'bsps/include/bsp/mm.h')
-rw-r--r--bsps/include/bsp/mm.h41
1 files changed, 41 insertions, 0 deletions
diff --git a/bsps/include/bsp/mm.h b/bsps/include/bsp/mm.h
new file mode 100644
index 0000000000..2152f686ba
--- /dev/null
+++ b/bsps/include/bsp/mm.h
@@ -0,0 +1,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