mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-02 03:56:42 +00:00
32 lines
785 B
C
32 lines
785 B
C
|
/*
|
||
|
* \brief Client-side I/O-memory session interface
|
||
|
* \author Christian Helmuth
|
||
|
* \date 2006-08-01
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (C) 2006-2011 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__IO_MEM_SESSION__CLIENT_H_
|
||
|
#define _INCLUDE__IO_MEM_SESSION__CLIENT_H_
|
||
|
|
||
|
#include <io_mem_session/capability.h>
|
||
|
#include <base/rpc_client.h>
|
||
|
|
||
|
namespace Genode {
|
||
|
|
||
|
struct Io_mem_session_client : Rpc_client<Io_mem_session>
|
||
|
{
|
||
|
explicit Io_mem_session_client(Io_mem_session_capability session)
|
||
|
: Rpc_client<Io_mem_session>(session) { }
|
||
|
|
||
|
Io_mem_dataspace_capability dataspace() { return call<Rpc_dataspace>(); }
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif /* _INCLUDE__IO_MEM_SESSION__CLIENT_H_ */
|