mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
ca971bbfd8
This patch changes the top-level directory layout as a preparatory step for improving the tools for managing 3rd-party source codes. The rationale is described in the issue referenced below. Issue #1082
39 lines
905 B
C++
39 lines
905 B
C++
/*
|
|
* \brief Root client interface
|
|
* \author Norman Feske
|
|
* \date 2006-05-11
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2006-2013 Genode Labs GmbH
|
|
*
|
|
* 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__ROOT__CLIENT_H_
|
|
#define _INCLUDE__ROOT__CLIENT_H_
|
|
|
|
#include <root/capability.h>
|
|
#include <base/rpc_client.h>
|
|
|
|
namespace Genode {
|
|
|
|
struct Root_client : Rpc_client<Root>
|
|
{
|
|
explicit Root_client(Root_capability root)
|
|
: Rpc_client<Root>(root) { }
|
|
|
|
Session_capability session(Session_args const &args, Affinity const &affinity) {
|
|
return call<Rpc_session>(args, affinity); }
|
|
|
|
void upgrade(Session_capability session, Upgrade_args const &args) {
|
|
call<Rpc_upgrade>(session, args); }
|
|
|
|
void close(Session_capability session) {
|
|
call<Rpc_close>(session); }
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__ROOT__CLIENT_H_ */
|