genode/repos/base/include/timer_session/client.h

42 lines
1.1 KiB
C
Raw Normal View History

2011-12-22 16:19:25 +01:00
/*
* \brief Client-side timer session interface
* \author Norman Feske
* \author Markus Partheymueller
2011-12-22 16:19:25 +01:00
* \date 2006-05-31
*/
/*
* Copyright (C) 2006-2017 Genode Labs GmbH
* Copyright (C) 2012 Intel Corporation
2011-12-22 16:19:25 +01:00
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
2011-12-22 16:19:25 +01:00
*/
#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; }
2011-12-22 16:19:25 +01:00
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>(); }
};
2011-12-22 16:19:25 +01:00
#endif /* _INCLUDE__TIMER_SESSION__CLIENT_H_ */