1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-10-30 12:03:52 -04:00
kernel/arch/memory.h
2017-11-05 09:23:10 +00:00

14 lines
330 B
C

#ifndef KERNELMQ_INCLUDED_MEMORY
#define KERNELMQ_INCLUDED_MEMORY 1
#include <kernelmq/info.h>
void memory_initialize(const struct KernelMQ_Info *kinfo);
unsigned long memory_alloc_page();
unsigned long memory_alloc_big_page();
void memory_free_page(unsigned long addr);
void memory_free_big_page(unsigned long addr);
#endif