mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 08:28:11 +00:00
Kernel: Remove unused Region::is_bitmap().
This commit is contained in:
parent
66e401d668
commit
b8e60b6652
2 changed files with 0 additions and 6 deletions
|
@ -229,8 +229,6 @@ ByteBuffer procfs$pid_vm(InodeIdentifier identifier)
|
|||
flags_builder.append('R');
|
||||
if (region->is_writable())
|
||||
flags_builder.append('W');
|
||||
if (region->is_bitmap())
|
||||
flags_builder.append('B');
|
||||
builder.appendf("%x -- %x %x %x % 4s %s\n",
|
||||
region->laddr().get(),
|
||||
region->laddr().offset(region->size() - 1).get(),
|
||||
|
|
|
@ -29,9 +29,6 @@ public:
|
|||
bool is_shared() const { return m_shared; }
|
||||
void set_shared(bool shared) { m_shared = shared; }
|
||||
|
||||
bool is_bitmap() const { return m_is_bitmap; }
|
||||
void set_is_bitmap(bool b) { m_is_bitmap = b; }
|
||||
|
||||
Retained<Region> clone();
|
||||
bool contains(LinearAddress laddr) const
|
||||
{
|
||||
|
@ -92,6 +89,5 @@ private:
|
|||
bool m_readable { true };
|
||||
bool m_writable { true };
|
||||
bool m_shared { false };
|
||||
bool m_is_bitmap { false };
|
||||
Bitmap m_cow_map;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue