os/kernel/cpu/paging.h

16 lines
446 B
C
Raw Normal View History

2019-02-09 12:52:45 -06:00
#ifndef PAGING_H
#define PAGING_H
2019-03-11 09:32:55 -05:00
void map_pages(void* virt_addr_ptr,void* phys_addr_ptr,int num_pages,char usr,char wr);
2020-07-23 11:50:23 -05:00
void unmap_pages(void* start_virt,int num_pages);
2019-03-11 09:32:55 -05:00
void* alloc_pages(int num_pages);
void alloc_pages_virt(int num_pages,void* addr);
2019-02-09 13:05:13 -06:00
void paging_init();
2019-05-05 13:14:14 -05:00
void* paging_new_address_space();
2020-07-22 19:26:55 -05:00
void load_address_space(void* cr3);
2019-05-04 10:42:17 -05:00
void* virt_to_phys(void* virt_addr);
void* find_free_pages(int num_pages);
2020-07-22 19:26:55 -05:00
void* get_cr3();
2019-05-04 10:52:38 -05:00
2019-02-09 12:52:45 -06:00
#endif