/* * \brief Linux-specific dataspace 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__LINUX_DATASPACE__CLIENT_H_ #define _INCLUDE__LINUX_DATASPACE__CLIENT_H_ #include #include #include #include namespace Genode { struct Linux_dataspace_client : Rpc_client { explicit Linux_dataspace_client(Dataspace_capability ds) : Rpc_client(static_cap_cast(ds)) { } /********************************* ** Generic dataspace interface ** *********************************/ size_t size() { return call(); } addr_t phys_addr() { return call(); } bool writable() { return call(); } /**************************************** ** Linux-specific dataspace interface ** ****************************************/ Filename fname() { return call(); } Untyped_capability fd() { return call(); } }; } #endif /* _INCLUDE__LINUX_DATASPACE__CLIENT_H_ */