diff options
author | Tom <tomut@yahoo.com> | 2020-08-24 19:35:19 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-25 09:48:48 +0200 |
commit | d89582880ed81c38df67687eadfc0764b6ce5ddd (patch) | |
tree | 3ff52c4e8808c5167ee37d5bf0a6669e9a18dfb4 /Kernel/Console.h | |
parent | ba6e4fb77f00587d2bd57865a00b1a4526684741 (diff) | |
download | serenity-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/Console.h')
-rw-r--r-- | Kernel/Console.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Console.h b/Kernel/Console.h index e58733f49e..f06ebf2a6a 100644 --- a/Kernel/Console.h +++ b/Kernel/Console.h @@ -34,6 +34,7 @@ class Console final : public Kernel::CharacterDevice { AK_MAKE_ETERNAL public: static Console& the(); + static void initialize(); static bool is_initialized(); Console(); |