1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-11-13 11:14:07 -05:00
kernel/arch/kmalloc.h
2017-11-04 05:47:07 +00:00

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