diff options
| author | Fabian Imhof <fabian.imhof@ost.ch> | 2025-03-15 12:38:11 +0000 |
|---|---|---|
| committer | Fabian Imhof <fabian.imhof@ost.ch> | 2025-03-15 12:38:11 +0000 |
| commit | e6a9d939ed5e9f89e69efdacc60a1ce6edd1061c (patch) | |
| tree | 144fdec9b4dbcbaaf75f36e0bc9dacac9c61eb8f /arch/x86_64/include | |
| parent | bf84cf80f4413e21b8c1fc24874ac796fa13775c (diff) | |
| download | teachos-e6a9d939ed5e9f89e69efdacc60a1ce6edd1061c.tar.xz teachos-e6a9d939ed5e9f89e69efdacc60a1ce6edd1061c.zip | |
temporarily make all page table entries user accessible
Diffstat (limited to 'arch/x86_64/include')
| -rw-r--r-- | arch/x86_64/include/arch/memory/paging/page_entry.hpp | 2 |
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. |
