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

12 lines
335 B
C
Raw Normal View History

2017-11-04 01:31:37 -04:00
#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