genode/repos/base-nova/src/core/core_rpc_cap_alloc.cc
Norman Feske 62b1c55399 Integrate CAP session into PD session
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
2016-03-07 12:34:44 +01:00

45 lines
997 B
C++

/*
* \brief Core-specific back end of the RPC entrypoint
* \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.
*/
/* Genode includes */
#include <base/rpc_server.h>
/* core-local includes */
#include <platform_generic.h>
#include <rpc_cap_factory.h>
#include <imprint_badge.h>
using namespace Genode;
static Rpc_cap_factory &rpc_cap_factory()
{
static Rpc_cap_factory inst(*platform()->core_mem_alloc());
return inst;
}
Native_capability Rpc_entrypoint::_alloc_rpc_cap(Pd_session &, Native_capability ep,
addr_t entry)
{
Native_capability cap = rpc_cap_factory().alloc(ep, entry, 0);
imprint_badge(cap.local_name(), cap.local_name());
return cap;
}
void Rpc_entrypoint::_free_rpc_cap(Pd_session &, Native_capability cap)
{
rpc_cap_factory().free(cap);
}