mirror of
https://github.com/genodelabs/genode.git
synced 2025-03-13 07:54:26 +00:00
The recently implemented capability resource trading scheme unfortunately broke the automated capability memory upgrade mechanism needed by base-hw kernel/core. This commit splits the capability memory upgrade mechanism from the PD session ram_quota upgrade, and moves that functionality into a separate Pd_session::Native_pd interface. Ref #2398
20 lines
460 B
C++
20 lines
460 B
C++
/*
|
|
* \brief Implementation of core's PD session upgrade
|
|
* \author Stefan Kalkowski
|
|
* \date 2015-05-20
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2015-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.
|
|
*/
|
|
|
|
#include <base/internal/native_env.h>
|
|
#include <assertion.h>
|
|
|
|
using namespace Genode;
|
|
|
|
void Genode::upgrade_capability_slab() { ASSERT_NEVER_CALLED; }
|