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:
Josef Söntgen 2023-08-31 16:03:14 +02:00 committed by Christian Helmuth
parent ab4c36c834
commit 02c8d73426

View File

@ -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 };