|
|
| File: [Development] / linux-2.6-xfs / arch / um / include / um_malloc.h (download)
Revision 1.4, Mon Aug 4 17:03:13 2008 UTC (9 years, 2 months ago) by lachlan.longdrop.melbourne.sgi.com
Merge up to 2.6.26 Merge of 2.6.x-xfs-melb:linux:31804b by kenmcd. |
/* * Copyright (C) 2005 Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> * Licensed under the GPL */ #ifndef __UM_MALLOC_H__ #define __UM_MALLOC_H__ #include "kern_constants.h" extern void *uml_kmalloc(int size, int flags); extern void kfree(const void *ptr); extern void *vmalloc(unsigned long size); extern void vfree(void *ptr); #endif /* __UM_MALLOC_H__ */