/* * \brief Client-side parent interface * \author Norman Feske * \date 2006-05-10 */ /* * 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__PARENT__CLIENT_H_ #define _INCLUDE__PARENT__CLIENT_H_ #include #include namespace Genode { struct Parent_client : Rpc_client { explicit Parent_client(Parent_capability parent) : Rpc_client(parent) { } void exit(int exit_value) { call(exit_value); } void announce(Service_name const &service, Root_capability root) { call(service, root); } Session_capability session(Service_name const &service, Session_args const &args, Affinity const &affinity) { return call(service, args, affinity); } void upgrade(Session_capability to_session, Upgrade_args const &args) { call(to_session, args); } void close(Session_capability session) { call(session); } Thread_capability main_thread_cap() const { return call(); } }; } #endif /* _INCLUDE__PARENT__CLIENT_H_ */