summaryrefslogtreecommitdiffstats
path: root/src/include/linux/mm.h
blob: 5a160f3c4df1c21394a0c12e927829d2d9ca055c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef _MM_H
#define _MM_H

#define PAGE_SIZE 4096

extern unsigned long get_free_page(void);
extern unsigned long put_page(unsigned long page,unsigned long address);
extern void free_page(unsigned long addr);

#endif