aboutsummaryrefslogtreecommitdiff
path: root/top
diff options
context:
space:
mode:
authorTravis Geiselbrecht <geist@foobox.com>2015-11-02 11:55:30 -0800
committerTravis Geiselbrecht <geist@foobox.com>2015-11-02 11:55:30 -0800
commita79328fe976e116f97b3b7dc0908ed6fe93b6d18 (patch)
treea75dc03882c6184c3bdca24040e3c1cf0c297248 /top
parenta80775c207c16963f8ed652bd013e345b2d63e78 (diff)
downloadcommon-a79328fe976e116f97b3b7dc0908ed6fe93b6d18.tar.gz
[main] move the printf for heap after the pre-heap init hooks are run
Diffstat (limited to 'top')
-rw-r--r--top/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/top/main.c b/top/main.c
index 2df0921a..0065a945 100644
--- a/top/main.c
+++ b/top/main.c
@@ -104,8 +104,8 @@ void lk_main(ulong arg0, ulong arg1, ulong arg2, ulong arg3)
lk_boot_args[0], lk_boot_args[1], lk_boot_args[2], lk_boot_args[3]);
// bring up the kernel heap
- dprintf(SPEW, "initializing heap\n");
lk_primary_cpu_init_level(LK_INIT_LEVEL_TARGET_EARLY, LK_INIT_LEVEL_HEAP - 1);
+ dprintf(SPEW, "initializing heap\n");
heap_init();
// deal with any static constructors