1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2024-12-11 11:35:39 -05:00
kernel/kernelmq/pfa.h

15 lines
300 B
C
Raw Normal View History

2017-11-08 00:10:09 -05:00
#ifndef KERNELMQ_INCLUDED_PFA
#define KERNELMQ_INCLUDED_PFA 1
2017-11-09 11:00:36 -05:00
#include "info.h"
2017-11-08 00:10:09 -05:00
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);
2017-11-08 00:10:09 -05:00
#endif