mirror of
https://github.com/tailix/kernel.git
synced 2024-11-13 11:14:07 -05:00
11 lines
335 B
C
11 lines
335 B
C
#ifndef KERNELMQ_INCLUDED_KMALLOC
|
|
#define KERNELMQ_INCLUDED_KMALLOC 1
|
|
|
|
extern unsigned int kmalloc_placement_addr;
|
|
|
|
unsigned int kmalloc(unsigned int size);
|
|
unsigned int kmalloc_a(unsigned int size);
|
|
unsigned int kmalloc_p(unsigned int size, unsigned int *phys);
|
|
unsigned int kmalloc_ap(unsigned int size, unsigned int *phys);
|
|
|
|
#endif
|