/* * \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; } struct Genode::Parent_client : Rpc_client { explicit Parent_client(Parent_capability parent) : Rpc_client(parent) { } void exit(int exit_value) override { call(exit_value); } void announce(Service_name const &service, Root_capability root) override { call(service, root); } Session_capability session(Service_name const &service, Session_args const &args, Affinity const &affinity) override { return call(service, args, affinity); } void upgrade(Session_capability to_session, Upgrade_args const &args) override { call(to_session, args); } void close(Session_capability session) override { call(session); } Thread_capability main_thread_cap() const override { return call(); } void resource_avail_sigh(Signal_context_capability sigh) override { call(sigh); } void resource_request(Resource_args const &args) override { call(args); } void yield_sigh(Signal_context_capability sigh) override { call(sigh); } Resource_args yield_request() override { return call(); } void yield_response() override { call(); } }; #endif /* _INCLUDE__PARENT__CLIENT_H_ */