2012-11-02 10:08:57 +00:00
|
|
|
/*
|
|
|
|
* \brief Client-side RTC session interface
|
|
|
|
* \author Markus Partheymueller
|
|
|
|
* \date 2012-11-15
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2012 Intel Corporation
|
|
|
|
* Copyright (C) 2013-2017 Genode Labs GmbH
|
2012-11-02 10:08:57 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2012-11-02 10:08:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__RTC_SESSION__CLIENT_H_
|
|
|
|
#define _INCLUDE__RTC_SESSION__CLIENT_H_
|
|
|
|
|
|
|
|
#include <rtc_session/rtc_session.h>
|
|
|
|
#include <base/rpc_client.h>
|
|
|
|
|
2015-03-04 20:12:14 +00:00
|
|
|
namespace Rtc { struct Session_client; }
|
|
|
|
|
|
|
|
|
|
|
|
struct Rtc::Session_client : Genode::Rpc_client<Session>
|
|
|
|
{
|
2019-07-15 11:24:04 +00:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* \param session session capability
|
|
|
|
*/
|
2015-03-04 20:12:14 +00:00
|
|
|
Session_client(Genode::Capability<Session> cap)
|
|
|
|
: Genode::Rpc_client<Session>(cap) {}
|
|
|
|
|
2019-07-15 11:24:04 +00:00
|
|
|
/***********************
|
|
|
|
** Session interface **
|
|
|
|
***********************/
|
|
|
|
|
2019-07-15 11:33:25 +00:00
|
|
|
void set_sigh(Genode::Signal_context_capability sigh) override {
|
|
|
|
call<Rpc_set_sigh>(sigh); }
|
|
|
|
|
2019-02-14 21:39:08 +00:00
|
|
|
Timestamp current_time() override { return call<Rpc_current_time>(); }
|
2015-03-04 20:12:14 +00:00
|
|
|
};
|
2012-11-02 10:08:57 +00:00
|
|
|
|
|
|
|
#endif /* _INCLUDE__RTC_SESSION__CLIENT_H_ */
|