summaryrefslogtreecommitdiff
path: root/Kernel/PTYMultiplexer.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-06 16:02:10 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-06 16:02:10 +0100
commita1b63bb6d4b7231c3e148efcd20a47a015420b90 (patch)
tree7c4c4ee719cac0b58538b6a785dbe4b0fd25cbbe /Kernel/PTYMultiplexer.cpp
parent781f216676ad341607ffc99fa8f816cd207eb90a (diff)
downloadserenity-a1b63bb6d4b7231c3e148efcd20a47a015420b90.zip
Bootloader: Locate the kernel's data segment and clear it.
This was a constant source of stupid bugs and I kept postponing it because I wasn't in the mood to write assembly code. Until now! :^)
Diffstat (limited to 'Kernel/PTYMultiplexer.cpp')
-rw-r--r--Kernel/PTYMultiplexer.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/Kernel/PTYMultiplexer.cpp b/Kernel/PTYMultiplexer.cpp
index 15959e1b3f..75e5a2e26e 100644
--- a/Kernel/PTYMultiplexer.cpp
+++ b/Kernel/PTYMultiplexer.cpp
@@ -12,11 +12,6 @@ PTYMultiplexer& PTYMultiplexer::the()
return *s_the;
}
-void PTYMultiplexer::initialize_statics()
-{
- s_the = nullptr;
-}
-
PTYMultiplexer::PTYMultiplexer()
: CharacterDevice(5, 2)
{