2006-10-20 14:28:20 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2005 Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
|
|
|
|
* Licensed under the GPL
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UM_MALLOC_H__
|
|
|
|
#define __UM_MALLOC_H__
|
|
|
|
|
2007-07-16 14:38:56 +08:00
|
|
|
#include "kern_constants.h"
|
|
|
|
|
2008-05-13 05:01:52 +08:00
|
|
|
extern void *uml_kmalloc(int size, int flags);
|
2006-10-20 14:28:20 +08:00
|
|
|
extern void kfree(const void *ptr);
|
|
|
|
|
2007-07-16 14:38:56 +08:00
|
|
|
extern void *vmalloc(unsigned long size);
|
2006-10-20 14:28:20 +08:00
|
|
|
extern void vfree(void *ptr);
|
|
|
|
|
|
|
|
#endif /* __UM_MALLOC_H__ */
|
2008-05-13 05:01:52 +08:00
|
|
|
|
|
|
|
|