2006-10-20 06:28:20 +00: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 06:38:56 +00:00
|
|
|
#include "kern_constants.h"
|
|
|
|
|
|
|
|
extern void *__kmalloc(int size, int flags);
|
|
|
|
static inline void *kmalloc(int size, int flags)
|
|
|
|
{
|
|
|
|
return __kmalloc(size, flags);
|
|
|
|
}
|
|
|
|
|
2006-10-20 06:28:20 +00:00
|
|
|
extern void kfree(const void *ptr);
|
|
|
|
|
2007-07-16 06:38:56 +00:00
|
|
|
extern void *vmalloc(unsigned long size);
|
2006-10-20 06:28:20 +00:00
|
|
|
extern void vfree(void *ptr);
|
|
|
|
|
|
|
|
#endif /* __UM_MALLOC_H__ */
|