diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-06 16:02:10 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-06 16:02:10 +0100 |
commit | a1b63bb6d4b7231c3e148efcd20a47a015420b90 (patch) | |
tree | 7c4c4ee719cac0b58538b6a785dbe4b0fd25cbbe /Kernel/VirtualFileSystem.h | |
parent | 781f216676ad341607ffc99fa8f816cd207eb90a (diff) | |
download | serenity-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/VirtualFileSystem.h')
-rw-r--r-- | Kernel/VirtualFileSystem.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/VirtualFileSystem.h b/Kernel/VirtualFileSystem.h index 758ce13028..6c3fe71c40 100644 --- a/Kernel/VirtualFileSystem.h +++ b/Kernel/VirtualFileSystem.h @@ -39,8 +39,6 @@ class VFS; class VFS { AK_MAKE_ETERNAL public: - static void initialize_globals(); - class Mount { public: Mount(InodeIdentifier host, RetainPtr<FS>&&); |