mirror of
https://github.com/tailix/kernel.git
synced 2024-10-30 12:03:52 -04:00
15 lines
309 B
C
15 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 addr);
|
||
|
void pfa_free_big_page(unsigned long addr);
|
||
|
|
||
|
#endif
|