update readme
[lunaix-os.git] / lunaix-os / includes / lunaix / mm / valloc.h
1 #ifndef __LUNAIX_VALLOC_H
2 #define __LUNAIX_VALLOC_H
3
4 void*
5 valloc(unsigned int size);
6
7 void*
8 vcalloc(unsigned int size);
9
10 void
11 vfree(void* ptr);
12
13 void*
14 valloc_dma(unsigned int size);
15
16 void*
17 vcalloc_dma(unsigned int size);
18
19 void
20 vfree_dma(void* ptr);
21
22 void
23 valloc_init();
24
25 #endif /* __LUNAIX_VALLOC_H */