summaryrefslogtreecommitdiff
path: root/Kernel/TTY/PTYMultiplexer.h
diff options
context:
space:
mode:
authorTom <tomut@yahoo.com>2020-08-24 19:35:19 -0600
committerAndreas Kling <kling@serenityos.org>2020-08-25 09:48:48 +0200
commitd89582880ed81c38df67687eadfc0764b6ce5ddd (patch)
tree3ff52c4e8808c5167ee37d5bf0a6669e9a18dfb4 /Kernel/TTY/PTYMultiplexer.h
parentba6e4fb77f00587d2bd57865a00b1a4526684741 (diff)
downloadserenity-d89582880ed81c38df67687eadfc0764b6ce5ddd.zip
Kernel: Switch singletons to use new Singleton class
MemoryManager cannot use the Singleton class because MemoryManager::initialize is called before the global constructors are run. That caused the Singleton to be re-initialized, causing it to create another MemoryManager instance. Fixes #3226
Diffstat (limited to 'Kernel/TTY/PTYMultiplexer.h')
-rw-r--r--Kernel/TTY/PTYMultiplexer.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Kernel/TTY/PTYMultiplexer.h b/Kernel/TTY/PTYMultiplexer.h
index 15bb4bdc19..17698009c5 100644
--- a/Kernel/TTY/PTYMultiplexer.h
+++ b/Kernel/TTY/PTYMultiplexer.h
@@ -40,6 +40,10 @@ public:
PTYMultiplexer();
virtual ~PTYMultiplexer() override;
+ static void initialize()
+ {
+ the();
+ }
static PTYMultiplexer& the();
// ^CharacterDevice