aboutsummaryrefslogtreecommitdiff
path: root/paging.h
diff options
context:
space:
mode:
Diffstat (limited to 'paging.h')
-rw-r--r--paging.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/paging.h b/paging.h
index 1715a6e..4ac8efa 100644
--- a/paging.h
+++ b/paging.h
@@ -5,9 +5,9 @@ void setup_flat_map(void);
void setup_pager_structures(uint32_t available_mem);
-#define CLAIM_FAILURE 0xffff
+#define SECTION_NULL 0xffff
-// returns section number or CLAIM_FAILURE in case of failure
+// 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);