AP, kmalloc

This commit is contained in:
Taku Shimosawa
2011-11-06 19:27:09 +09:00
parent 5ddd25df98
commit 83a17650b9
10 changed files with 279 additions and 42 deletions

7
kernel/include/kmalloc.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef __HEADER_KMALLOC_H
#define __HEADER_KMALLOC_H
void *kmalloc(int size, int flag);
void kfree(void *ptr);
#endif