mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
11 lines
243 B
C
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
|