mirror of
https://github.com/genodelabs/genode.git
synced 2025-06-18 07:08:18 +00:00
timeout: use uint64_t for all plain time values
This enforces the use of unsigned 64-bit values for time in the duration type, the timeout framework, the timer session, the userland timer-drivers, and the alarm framework on all platforms. The commit also adapts the code that uses these tools accross all basic repositories (base, base-*, os. gems, libports, ports, dde_*) to use unsigned 64-bit values for time as well as far as this does not imply profound modifications. Fixes #3208
This commit is contained in:
committed by
Christian Helmuth
parent
e072ee480b
commit
181c78d482
@ -175,7 +175,7 @@ struct Global_keys_handler::Main
|
||||
*/
|
||||
Constructible<Timer::Connection> _timer { };
|
||||
|
||||
unsigned long const _delay_ms;
|
||||
uint64_t const _delay_ms;
|
||||
|
||||
Signal_handler<Report> _timer_handler;
|
||||
|
||||
@ -189,7 +189,7 @@ struct Global_keys_handler::Main
|
||||
_element(reports, *this),
|
||||
_bool_states(bool_states),
|
||||
_reporter(env, _name.string()),
|
||||
_delay_ms(node.attribute_value("delay_ms", 0UL)),
|
||||
_delay_ms(node.attribute_value("delay_ms", (uint64_t)0)),
|
||||
_timer_handler(env.ep(), *this, &Report::_generate_report)
|
||||
{
|
||||
_reporter.enabled(true);
|
||||
|
Reference in New Issue
Block a user