From 459cc234410bf2344144b2a5419c27f769dd3981 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 17 Feb 2019 09:05:49 +0100 Subject: [PATCH] Kernel: Remove Process::gui_client_id(). --- Kernel/Process.h | 2 -- 1 file changed, 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&&, size_t offset_in_vmo, String&& name, bool is_readable, bool is_writable); Region* allocate_file_backed_region(LinearAddress, size_t, RetainPtr&&, 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);