timeout: change timer resolution from 100 to 5 ms

Issue #2225
This commit is contained in:
Norman Feske 2017-01-09 12:18:17 +01:00
parent 5034acc109
commit 5e75ac4f87

View File

@ -34,7 +34,7 @@ class Genode::Timer_time_source : public Genode::Time_source
{
private:
enum { MIN_TIMEOUT_US = 100000 };
enum { MIN_TIMEOUT_US = 5000 };
using Signal_handler = Genode::Signal_handler<Timer_time_source>;