2011-12-22 15:19:25 +00:00
|
|
|
/*
|
|
|
|
* \brief Client-side parent interface
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2006-05-10
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2013-01-10 20:44:47 +00:00
|
|
|
* Copyright (C) 2006-2013 Genode Labs GmbH
|
2011-12-22 15:19:25 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
|
|
* under the terms of the GNU General Public License version 2.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__PARENT__CLIENT_H_
|
|
|
|
#define _INCLUDE__PARENT__CLIENT_H_
|
|
|
|
|
|
|
|
#include <parent/capability.h>
|
|
|
|
#include <base/rpc_client.h>
|
|
|
|
|
|
|
|
namespace Genode {
|
|
|
|
|
|
|
|
struct Parent_client : Rpc_client<Parent>
|
|
|
|
{
|
|
|
|
explicit Parent_client(Parent_capability parent)
|
|
|
|
: Rpc_client<Parent>(parent) { }
|
|
|
|
|
|
|
|
void exit(int exit_value) { call<Rpc_exit>(exit_value); }
|
|
|
|
|
|
|
|
void announce(Service_name const &service, Root_capability root) {
|
|
|
|
call<Rpc_announce>(service, root); }
|
|
|
|
|
|
|
|
Session_capability session(Service_name const &service,
|
|
|
|
Session_args const &args) {
|
|
|
|
return call<Rpc_session>(service, args); }
|
|
|
|
|
|
|
|
void upgrade(Session_capability to_session, Upgrade_args const &args) {
|
|
|
|
call<Rpc_upgrade>(to_session, args); }
|
|
|
|
|
|
|
|
void close(Session_capability session) { call<Rpc_close>(session); }
|
2012-10-10 11:54:46 +00:00
|
|
|
|
|
|
|
Thread_capability main_thread_cap() const {
|
|
|
|
return call<Rpc_main_thread>(); }
|
2011-12-22 15:19:25 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* _INCLUDE__PARENT__CLIENT_H_ */
|