mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-22 04:52:56 +01:00
timer-session: decrease min timeout to 1 ms
Depending on the client and use-case the current minimal timeout value of 5 ms could be too high, lowering it to 1 ms stays within the limit imposed by most timer drivers. Issue #4990.
This commit is contained in:
committed by
Christian Helmuth
parent
ab4c36c834
commit
02c8d73426
@@ -199,7 +199,7 @@ class Timer::Connection : public Genode::Connection<Session>,
|
||||
** Members for interaction with Timeout framework **
|
||||
****************************************************/
|
||||
|
||||
enum { MIN_TIMEOUT_US = 5000 };
|
||||
enum { MIN_TIMEOUT_US = 1000 };
|
||||
enum { REAL_TIME_UPDATE_PERIOD_US = 500000 };
|
||||
enum { MAX_INTERPOLATION_QUALITY = 3 };
|
||||
enum { MAX_REMOTE_TIME_LATENCY_US = 500 };
|
||||
|
||||
Reference in New Issue
Block a user