diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-17 01:16:38 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-17 01:16:38 +0100 |
commit | 809266a9fb5d159c6d9538f2298ee9f6c6eee3ec (patch) | |
tree | dc32d9219a636d86ca7f2ed2e1696ff3ef1e02b8 /Kernel/Process.h | |
parent | cc9ff96a989116606ef642a2181fc3229e568dee (diff) | |
download | serenity-809266a9fb5d159c6d9538f2298ee9f6c6eee3ec.zip |
Kernel: Remove tracking of bitmap memory.
There are no more kernel bitmaps. It's much better this way.
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r-- | Kernel/Process.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h index b4f4ac2335..b15b7d61a1 100644 --- a/Kernel/Process.h +++ b/Kernel/Process.h @@ -277,7 +277,6 @@ public: size_t amount_virtual() const; size_t amount_resident() const; size_t amount_shared() const; - size_t amount_in_bitmaps() const; Process* fork(RegisterDump&); int exec(const String& path, Vector<String>&& arguments, Vector<String>&& environment); |