From 860c89424044bc1059984fa8089774f78a242e3b Mon Sep 17 00:00:00 2001 From: AlmuHS Date: Wed, 26 Jun 2019 17:07:21 +0200 Subject: debug fix: replace true to 1 --- kern/startup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kern/startup.c b/kern/startup.c index 378ee798..b1791fcb 100644 --- a/kern/startup.c +++ b/kern/startup.c @@ -183,7 +183,7 @@ void setup_main(void) (void) thread_create(kernel_task, &startup_thread); thread_start(startup_thread, start_kernel_threads); - while(true); + while(1); /* * Give it a kernel stack. -- cgit v1.2.3