mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-02 07:37:03 +00:00
Kernel: Add convenience values to the Memory::Region::Access enum
Instead of `Memory::Region::Access::Read | Memory::Region::AccessWrite` you can now say `Memory::Region::Access::ReadWrite`.
This commit is contained in:
parent
47bdd7c3a0
commit
2cd8b21974
Notes:
sideshowbarker
2024-07-18 07:24:14 +09:00
Author: https://github.com/awesomekling
Commit: 2cd8b21974
38 changed files with 68 additions and 65 deletions
|
@ -39,6 +39,9 @@ public:
|
|||
HasBeenReadable = 16,
|
||||
HasBeenWritable = 32,
|
||||
HasBeenExecutable = 64,
|
||||
ReadOnly = Read,
|
||||
ReadWrite = Read | Write,
|
||||
ReadWriteExecute = Read | Write | Execute,
|
||||
};
|
||||
|
||||
enum class Cacheable {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue