/* * \brief Core-local RM session * \author MArtin Stein * \date 2010-09-09 */ /* * Copyright (C) 2010-2012 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 /* core includes */ #include #include #include using namespace Genode; Rm_session::Local_addr Core_rm_session::attach(Dataspace_capability ds_cap, size_t size, off_t offset, bool use_local_addr, Rm_session::Local_addr local_addr, bool executable) { Dataspace_component *ds = static_cast(_ds_ep->obj_by_cap(ds_cap)); if (!ds) throw Invalid_dataspace(); /* roottask is mapped identically */ return ds->phys_addr(); }