hw_x86_64: Add fake Timer::ms_to_tics implementation

This makes the scheduler happy and it starts scheduling threads.
This commit is contained in:
Reto Buerki 2015-03-06 10:21:19 +01:00 committed by Christian Helmuth
parent 4946f21302
commit d1a4eaed0d
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ class Genode::Timer
static uint32_t ms_to_tics(unsigned const ms) static uint32_t ms_to_tics(unsigned const ms)
{ {
PDBG("not implemented"); PDBG("not implemented");
return 0; return 10000;
} }
unsigned value(unsigned) unsigned value(unsigned)