mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +00:00
5a6c4d6ff2
This interim solution for issue #5256 solves the problem for the thread.run script. Issue #5256
36 lines
896 B
C++
36 lines
896 B
C++
/*
|
|
* \brief Client-side HW specific PD session interface
|
|
* \author Stefan Kalkowski
|
|
* \date 2017-06-12
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__HW_NATIVE_PD__CLIENT_H_
|
|
#define _INCLUDE__HW_NATIVE_PD__CLIENT_H_
|
|
|
|
#include <hw_native_pd/hw_native_pd.h>
|
|
#include <base/rpc_client.h>
|
|
|
|
namespace Genode { struct Hw_native_pd_client; }
|
|
|
|
|
|
struct Genode::Hw_native_pd_client : Rpc_client<Pd_session::Native_pd>
|
|
{
|
|
explicit Hw_native_pd_client(Capability<Pd_session::Native_pd> cap)
|
|
: Rpc_client<Pd_session::Native_pd>(cap) { }
|
|
|
|
void upgrade_cap_slab() override {
|
|
call<Rpc_upgrade_cap_slab>(); }
|
|
|
|
size_t avail_cap_slab() override {
|
|
return call<Rpc_avail_cap_slab>(); }
|
|
};
|
|
|
|
#endif /* _INCLUDE__HW_NATIVE_PD__CLIENT_H_ */
|