mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 23:12:24 +00:00
62b1c55399
This patch integrates the functionality of the former CAP session into the PD session and unifies the approch of supplementing the generic PD session with kernel-specific functionality. The latter is achieved by the new 'Native_pd' interface. The kernel-specific interface can be obtained via the Pd_session::native_pd accessor function. The kernel-specific interfaces are named Nova_native_pd, Foc_native_pd, and Linux_native_pd. The latter change allowed for to deduplication of the pd_session_component code among the various base platforms. To retain API compatibility, we keep the 'Cap_session' and 'Cap_connection' around. But those classes have become mere wrappers around the PD session interface. Issue #1841
41 lines
1.0 KiB
C++
41 lines
1.0 KiB
C++
/*
|
|
* \brief Client-side stub for the NOVA-specific PD session interface
|
|
* \author Norman Feske
|
|
* \date 2016-01-19
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2016 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__NOVA_NATIVE_PD__CLIENT_H_
|
|
#define _INCLUDE__NOVA_NATIVE_PD__CLIENT_H_
|
|
|
|
#include <nova_native_pd/nova_native_pd.h>
|
|
#include <base/rpc_client.h>
|
|
|
|
namespace Genode { struct Nova_native_pd_client; }
|
|
|
|
|
|
struct Genode::Nova_native_pd_client : Rpc_client<Nova_native_pd>
|
|
{
|
|
explicit Nova_native_pd_client(Capability<Native_pd> cap)
|
|
: Rpc_client<Nova_native_pd>(static_cap_cast<Nova_native_pd>(cap)) { }
|
|
|
|
Native_capability alloc_rpc_cap(Native_capability ep,
|
|
addr_t entry, addr_t mtd) override
|
|
{
|
|
return call<Rpc_alloc_rpc_cap>(ep, entry, mtd);
|
|
}
|
|
|
|
void imprint_rpc_cap(Native_capability cap, unsigned long badge) override
|
|
{
|
|
call<Rpc_imprint_rpc_cap>(cap, badge);
|
|
}
|
|
};
|
|
|
|
#endif /* _INCLUDE__PD_SESSION__CLIENT_H_ */
|