mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +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
33 lines
854 B
C++
33 lines
854 B
C++
/*
|
|
* \brief Client-side Fiasco.OC specific PD session interface
|
|
* \author Stefan Kalkowski
|
|
* \author Norman Feske
|
|
* \date 2011-04-14
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2011-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__FOC_NATIVE_PD__CLIENT_H_
|
|
#define _INCLUDE__FOC_NATIVE_PD__CLIENT_H_
|
|
|
|
#include <foc_native_pd/foc_native_pd.h>
|
|
#include <base/rpc_client.h>
|
|
|
|
namespace Genode { struct Foc_native_pd_client; }
|
|
|
|
|
|
struct Genode::Foc_native_pd_client : Rpc_client<Foc_native_pd>
|
|
{
|
|
explicit Foc_native_pd_client(Capability<Native_pd> cap)
|
|
: Rpc_client<Foc_native_pd>(static_cap_cast<Foc_native_pd>(cap)) { }
|
|
|
|
Native_capability task_cap() { return call<Rpc_task_cap>(); }
|
|
};
|
|
|
|
#endif /* _INCLUDE__FOC_NATIVE_PD__CLIENT_H_ */
|