1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:17:35 +00:00

Kernel: Rename a very long enum to ShouldDeallocateVirtualRange

ShouldDeallocateVirtualMemoryVirtualRange was a bit on the long side.
This commit is contained in:
Andreas Kling 2021-08-06 21:45:05 +02:00
parent cdab5b2091
commit 47bdd7c3a0
5 changed files with 11 additions and 11 deletions

View file

@ -168,11 +168,11 @@ public:
void set_page_directory(PageDirectory&);
bool map(PageDirectory&, ShouldFlushTLB = ShouldFlushTLB::Yes);
enum class ShouldDeallocateVirtualMemoryVirtualRange {
enum class ShouldDeallocateVirtualRange {
No,
Yes,
};
void unmap(ShouldDeallocateVirtualMemoryVirtualRange = ShouldDeallocateVirtualMemoryVirtualRange::Yes);
void unmap(ShouldDeallocateVirtualRange = ShouldDeallocateVirtualRange::Yes);
void remap();