kernel: test: replace schedule_timeout with milli_sleep

This commit is contained in:
2023-05-03 19:27:58 +01:00
parent d0371d9204
commit cbd6aae037

View File

@@ -39,7 +39,7 @@ void kernel_init(uintptr_t arg)
run_all_tests();
while (1) {
schedule_timeout(HZ);
milli_sleep(1000);
printk("tick");
}
}