1 // Copyright 2016 The Fuchsia Authors
2 // Copyright (c) 2013 Travis Geiselbrecht
3 //
4 // Use of this source code is governed by a MIT-style
5 // license that can be found in the LICENSE file or at
6 // https://opensource.org/licenses/MIT
7 
8 #include <kernel/init.h>
9 
10 #include <debug.h>
11 #include <kernel/mp.h>
12 #include <kernel/thread.h>
13 #include <kernel/timer.h>
14 #include <zircon/compiler.h>
15 
kernel_init(void)16 void kernel_init(void) {
17     dprintf(SPEW, "initializing mp\n");
18     mp_init();
19 
20     dprintf(SPEW, "initializing timers\n");
21     timer_queue_init();
22 }
23