MyOS Kernel
pmem.h
Go to the documentation of this file.
1 
5 #ifndef PMEM_H
6 #define PMEM_H
7 
8 #include <grub/multiboot2.h>
9 
14 void pmem_init(struct multiboot_boot_header_tag* tags);
20 void* pmem_alloc(int num_pages);
21 
27 void pmem_free(int start_page,int num_pages);
28 
29 #endif
pmem_alloc
void * pmem_alloc(int num_pages)
Definition: pmem.c:88
pmem_free
void pmem_free(int start_page, int num_pages)
Definition: pmem.c:136
pmem_init
void pmem_init(struct multiboot_boot_header_tag *tags)
Definition: pmem.c:49