mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 22:47:50 +00:00
181c78d482
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
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
/*
|
|
* \brief Client-side timer session interface
|
|
* \author Norman Feske
|
|
* \author Markus Partheymueller
|
|
* \date 2006-05-31
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2006-2017 Genode Labs GmbH
|
|
* Copyright (C) 2012 Intel Corporation
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__TIMER_SESSION__CLIENT_H_
|
|
#define _INCLUDE__TIMER_SESSION__CLIENT_H_
|
|
|
|
#include <timer_session/capability.h>
|
|
#include <base/rpc_client.h>
|
|
|
|
namespace Timer { struct Session_client; }
|
|
|
|
|
|
struct Timer::Session_client : Genode::Rpc_client<Session>
|
|
{
|
|
explicit Session_client(Session_capability session)
|
|
: Genode::Rpc_client<Session>(session) { }
|
|
|
|
void trigger_once(uint64_t us) override { call<Rpc_trigger_once>(us); }
|
|
|
|
void trigger_periodic(uint64_t us) override { call<Rpc_trigger_periodic>(us); }
|
|
|
|
void sigh(Signal_context_capability sigh) override { call<Rpc_sigh>(sigh); }
|
|
|
|
uint64_t elapsed_ms() const override { return call<Rpc_elapsed_ms>(); }
|
|
|
|
uint64_t elapsed_us() const override { return call<Rpc_elapsed_us>(); }
|
|
};
|
|
|
|
#endif /* _INCLUDE__TIMER_SESSION__CLIENT_H_ */
|