/* * \brief Client-side of the Linux-specific PD session interface * \author Norman Feske * \date 2012-08-15 */ /* * Copyright (C) 2012-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__LINUX_PD_SESSION__CLIENT_H_ #define _INCLUDE__LINUX_PD_SESSION__CLIENT_H_ #include #include namespace Genode { struct Linux_native_pd_client; } struct Genode::Linux_native_pd_client : Rpc_client { explicit Linux_native_pd_client(Capability cap) : Rpc_client(static_cap_cast(cap)) { } void start(Capability binary) { call(binary); } }; #endif /* _INCLUDE__LINUX_PD_SESSION__CLIENT_H_ */