kmalloc/kfree interface

This commit is contained in:
Taku Shimosawa
2011-11-13 15:18:20 +09:00
parent c5cdd121f6
commit ca96e1f818
2 changed files with 15 additions and 4 deletions

View File

@@ -1,7 +1,9 @@
#ifndef __HEADER_KMALLOC_H
#define __HEADER_KMALLOC_H
void *kmalloc(int size, int flag);
#include <aal/mm.h>
void *kmalloc(int size, enum aal_mc_ap_flag flag);
void kfree(void *ptr);
#endif