aboutsummaryrefslogtreecommitdiff
path: root/arch/x86_64/include
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/include')
-rw-r--r--arch/x86_64/include/arch/memory/paging/page_entry.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/include/arch/memory/paging/page_entry.hpp b/arch/x86_64/include/arch/memory/paging/page_entry.hpp
index 1de31b5..ef4fe61 100644
--- a/arch/x86_64/include/arch/memory/paging/page_entry.hpp
+++ b/arch/x86_64/include/arch/memory/paging/page_entry.hpp
@@ -22,7 +22,7 @@ namespace teachos::arch::memory::paging
PRESENT = 1UL << 0UL, ///< Page is in memory and therefore present.
///< is assumed to be READONLY and only that flag is shown in the objdump.
WRITABLE = 1UL << 1UL, ///< It is possible to write to the page.
- USER_ACCESIBLE = 1UL << 2UL, ///< Page can be accessed in user mode instead of only in kernel mode code.
+ USER_ACCESSIBLE = 1UL << 2UL, ///< Page can be accessed in user mode instead of only in kernel mode code.
WRITE_THROUGH_CACHING = 1UL << 3UL, ///< Write to the page go directly to memory instead of the cache.
DISABLED_CACHING = 1UL << 4UL, ///< Page uses caching.
ACCESSED = 1UL << 5UL, ///< Page is currently in use.