diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-17 09:05:49 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-17 09:05:49 +0100 |
commit | 459cc234410bf2344144b2a5419c27f769dd3981 (patch) | |
tree | 0babd3ec9c7df8b9c1c6c875a166c2b5f48ca5b2 /Kernel | |
parent | f02a49023006e43f9fbbd9aef7383ae20901742d (diff) | |
download | serenity-459cc234410bf2344144b2a5419c27f769dd3981.zip |
Kernel: Remove Process::gui_client_id().
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Process.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h index b15b7d61a1..bbad42d35e 100644 --- a/Kernel/Process.h +++ b/Kernel/Process.h @@ -290,8 +290,6 @@ public: bool has_used_fpu() const { return m_has_used_fpu; } void set_has_used_fpu(bool b) { m_has_used_fpu = b; } - int gui_client_id() const { return (int)this; } - Region* allocate_region_with_vmo(LinearAddress, size_t, RetainPtr<VMObject>&&, size_t offset_in_vmo, String&& name, bool is_readable, bool is_writable); Region* allocate_file_backed_region(LinearAddress, size_t, RetainPtr<Inode>&&, String&& name, bool is_readable, bool is_writable); Region* allocate_region(LinearAddress, size_t, String&& name, bool is_readable = true, bool is_writable = true, bool commit = true); |