aboutsummaryrefslogtreecommitdiff
path: root/paging.h
diff options
context:
space:
mode:
Diffstat (limited to 'paging.h')
-rw-r--r--paging.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/paging.h b/paging.h
deleted file mode 100644
index 4ac8efa..0000000
--- a/paging.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef PAGING_H
-#define PAGING_H
-
-void setup_flat_map(void);
-
-void setup_pager_structures(uint32_t available_mem);
-
-#define SECTION_NULL 0xffff
-
-// returns section number or SECTION_NULL in case of failure
-uint16_t claim_and_map_section
-(void *owner, uint16_t where_to_map, uint8_t access_permissions);
-
-#endif // PAGING_H