git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
feat: alignment option of cake allocator for dma buffer
[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
vfree(void* ptr);
9
10
void*
11
valloc_dma(unsigned int size);
12
13
void
14
vfree_dma(void* ptr);
15
16
void
17
valloc_init();
18
19
#endif /* __LUNAIX_VALLOC_H */