base-linux: omit stack-area init for lx_hybrid

Fixes #2030
This commit is contained in:
Norman Feske
2016-07-06 18:10:23 +02:00
parent d0e7cc35fa
commit 57ec61fb4b
5 changed files with 51 additions and 5 deletions

View File

@ -0,0 +1,29 @@
/*
* \brief Attach stack area to local address space
* \author Norman Feske
* \date 2016-07-06
*
* This function resides in a distinct compilation unit because it is not
* used for hybrid components where the Genode::Thread API is implemented
* via POSIX threads.
*/
/*
* 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.
*/
/* base-internal includes */
#include <base/internal/platform_env.h>
using namespace Genode;
void Platform_env::_attach_stack_area()
{
_local_pd_session._address_space.attach_at(_local_pd_session._stack_area.dataspace(),
stack_area_virtual_base(),
stack_area_virtual_size());
}