From d1a4eaed0d2ea364e303807f93b2dc79bc825dd3 Mon Sep 17 00:00:00 2001 From: Reto Buerki Date: Fri, 6 Mar 2015 10:21:19 +0100 Subject: [PATCH] hw_x86_64: Add fake Timer::ms_to_tics implementation This makes the scheduler happy and it starts scheduling threads. --- repos/base-hw/src/core/include/spec/x86/timer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/base-hw/src/core/include/spec/x86/timer.h b/repos/base-hw/src/core/include/spec/x86/timer.h index 6bcc3e5159..67a81cf4eb 100644 --- a/repos/base-hw/src/core/include/spec/x86/timer.h +++ b/repos/base-hw/src/core/include/spec/x86/timer.h @@ -48,7 +48,7 @@ class Genode::Timer static uint32_t ms_to_tics(unsigned const ms) { PDBG("not implemented"); - return 0; + return 10000; } unsigned value(unsigned)