Paolo 'Blaisorblade' Giarrusso | c13e569 | 2006-10-19 23:28:20 -0700 | [diff] [blame] | 1 | /* |
2 | * Copyright (C) 2005 Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> | ||||
3 | * Licensed under the GPL | ||||
4 | */ | ||||
5 | |||||
6 | #ifndef __UM_MALLOC_H__ | ||||
7 | #define __UM_MALLOC_H__ | ||||
8 | |||||
9 | extern void *um_kmalloc(int size); | ||||
10 | extern void *um_kmalloc_atomic(int size); | ||||
11 | extern void kfree(const void *ptr); | ||||
12 | |||||
13 | extern void *um_vmalloc(int size); | ||||
14 | extern void *um_vmalloc_atomic(int size); | ||||
15 | extern void vfree(void *ptr); | ||||
16 | |||||
17 | #endif /* __UM_MALLOC_H__ */ |