diff options
author | Alexis211 <alexis211@gmail.com> | 2009-10-13 18:32:26 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-10-13 18:32:26 +0200 |
commit | 01665d725a200c3c51bcd834cc8324ec057286c4 (patch) | |
tree | a9ddc80b628c8b6226dbeab24d4c7de00dca7075 /Source/Kernel/Core | |
parent | 277d5fcb3b378089c0f3390a0b4d1b529075958a (diff) | |
download | Melon-01665d725a200c3c51bcd834cc8324ec057286c4.tar.gz Melon-01665d725a200c3c51bcd834cc8324ec057286c4.zip |
Heap is now in a separate class, Heap.
Diffstat (limited to 'Source/Kernel/Core')
-rw-r--r-- | Source/Kernel/Core/kmain.wtf.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Kernel/Core/kmain.wtf.cpp b/Source/Kernel/Core/kmain.wtf.cpp index 8b6a0de..c7b47e1 100644 --- a/Source/Kernel/Core/kmain.wtf.cpp +++ b/Source/Kernel/Core/kmain.wtf.cpp @@ -80,6 +80,7 @@ u32int logoAnimation(void* p) { } Task::currThread()->sleep(20); } + delete wat; return 0; } @@ -134,7 +135,7 @@ void kmain(multiboot_info_t* mbd, u32int magic) { PROCESSING(kvt, "Creating kernel heap..."); Mem::createHeap(); OK(kvt); INFO(kvt); *kvt << "Free frames : " << (s32int)PhysMem::free() << "/" << (s32int)PhysMem::total() << "\n"; - + PROCESSING(kvt,"Initializing PIT..."); Dev::registerDevice(new Timer()); OK(kvt); |