1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2025-02-17 15:45:37 -05:00
kernel/arch/pfa.h
2017-11-09 15:48:08 +00:00

14 lines
309 B
C

#ifndef KERNELMQ_INCLUDED_PFA
#define KERNELMQ_INCLUDED_PFA 1
#include <kernelmq/info.h>
void pfa_initialize(const struct KernelMQ_Info *kinfo);
unsigned long pfa_alloc_page();
unsigned long pfa_alloc_big_page();
void pfa_free_page(unsigned long base);
void pfa_free_big_page(unsigned long base);
#endif