summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2020-01-09 18:02:37 +0100
committerAndreas Kling <awesomekling@gmail.com>2020-01-09 18:02:37 +0100
commitff16298b44944937a8cf51aab5850acca7114641 (patch)
treead12166944862195bba632f8916f0af469fa33ce /Kernel
parent17ef5bc0ace2eb662445b612913e4ae5e3304c34 (diff)
downloadserenity-ff16298b44944937a8cf51aab5850acca7114641.zip
Kernel: Removed an unused global variable
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/Process.cpp1
-rw-r--r--Kernel/Process.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/Process.cpp b/Kernel/Process.cpp
index 1ff7183901..a5643a79e6 100644
--- a/Kernel/Process.cpp
+++ b/Kernel/Process.cpp
@@ -63,7 +63,6 @@ static Lock* s_hostname_lock;
static VirtualAddress s_info_page_address_for_userspace;
static VirtualAddress s_info_page_address_for_kernel;
VirtualAddress g_return_to_ring3_from_signal_trampoline;
-VirtualAddress g_return_to_ring0_from_signal_trampoline;
HashMap<String, OwnPtr<Module>>* g_modules;
pid_t Process::allocate_pid()
diff --git a/Kernel/Process.h b/Kernel/Process.h
index 29d9bdba85..f8a96d91fa 100644
--- a/Kernel/Process.h
+++ b/Kernel/Process.h
@@ -29,7 +29,6 @@ timeval kgettimeofday();
void kgettimeofday(timeval&);
extern VirtualAddress g_return_to_ring3_from_signal_trampoline;
-extern VirtualAddress g_return_to_ring0_from_signal_trampoline;
class Process : public InlineLinkedListNode<Process>
, public Weakable<Process> {