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 08:08:33 +00:00

11 lines
243 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();
void memory_free_page(unsigned long addr);
#endif