summaryrefslogtreecommitdiffstats
path: root/src/include/linux/mm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/linux/mm.h')
-rw-r--r--src/include/linux/mm.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/include/linux/mm.h b/src/include/linux/mm.h
new file mode 100644
index 0000000..5a160f3
--- /dev/null
+++ b/src/include/linux/mm.h
@@ -0,0 +1,10 @@
1#ifndef _MM_H
2#define _MM_H
3
4#define PAGE_SIZE 4096
5
6extern unsigned long get_free_page(void);
7extern unsigned long put_page(unsigned long page,unsigned long address);
8extern void free_page(unsigned long addr);
9
10#endif