kmalloc()/kfree() re-implementation

This commit is contained in:
Balazs Gerofi
2016-08-18 21:41:23 +09:00
parent 82ae6d7458
commit 3b60a95f13
4 changed files with 188 additions and 366 deletions

View File

@ -32,8 +32,6 @@ void *_kmalloc(int size, enum ihk_mc_ap_flag flag, char *file, int line);
void _kfree(void *ptr, char *file, int line);
void *__kmalloc(int size, enum ihk_mc_ap_flag flag);
void __kfree(void *ptr);
void *___kmalloc(int size, enum ihk_mc_ap_flag flag);
void ___kfree(void *ptr);
int _memcheck(void *ptr, char *msg, char *file, int line, int free);
int memcheckall();