mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
9bae4823a0
Pass an explicit Region_map reference to stream constructors. Issue #1987 Issue #2034
54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
/**
|
|
* \brief Server RPC object with packet stream
|
|
* \author Sebastian Sumpf
|
|
* \date 2014-12-08
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2014 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__USB_SESSION__RPC_OBJECT_H_
|
|
#define _INCLUDE__USB_SESSION__RPC_OBJECT_H_
|
|
|
|
#include <base/rpc_server.h>
|
|
#include <packet_stream_tx/rpc_object.h>
|
|
#include <usb_session/usb_session.h>
|
|
|
|
namespace Usb { class Session_rpc_object; }
|
|
|
|
|
|
class Usb::Session_rpc_object : public Genode::Rpc_object<Session, Session_rpc_object>
|
|
{
|
|
protected:
|
|
|
|
Packet_stream_tx::Rpc_object<Tx> _tx;
|
|
|
|
public:
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* \param tx_ds dataspace used as communication buffer
|
|
* for the tx packet stream
|
|
* \param ep entry point used for packet-stream channel
|
|
*/
|
|
Session_rpc_object(Genode::Dataspace_capability tx_ds,
|
|
Genode::Rpc_entrypoint &ep)
|
|
: _tx(tx_ds, *Genode::env()->rm_session(), ep) { }
|
|
|
|
/**
|
|
* Return capability to packet-stream channel
|
|
*
|
|
* This method is called by the client via an RPC call at session
|
|
* construction time.
|
|
*/
|
|
Genode::Capability<Tx> _tx_cap() { return _tx.cap(); }
|
|
|
|
Tx::Sink *sink() { return _tx.sink(); }
|
|
};
|
|
|
|
#endif /* _INCLUDE__USB_SESSION__RPC_OBJECT_H_ */
|