kern
annotate src/mem.h @ 17:098b1cb5eeaa
forgot to add a shitload of files
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 26 Mar 2011 21:39:14 +0200 |
parents | |
children | 8be069e6bb05 |
rev | line source |
---|---|
nuclear@17 | 1 #ifndef MEM_H_ |
nuclear@17 | 2 #define MEM_H_ |
nuclear@17 | 3 |
nuclear@17 | 4 #include "mboot.h" |
nuclear@17 | 5 |
nuclear@17 | 6 /* maximum break for the early allocator */ |
nuclear@17 | 7 #define MAX_BRK 0x400000 |
nuclear@17 | 8 |
nuclear@17 | 9 void init_mem(struct mboot_info *mb); |
nuclear@17 | 10 uint32_t alloc_phys_page(void); |
nuclear@17 | 11 |
nuclear@17 | 12 #endif /* MEM_H_ */ |