/* * \brief Implementation of Thread API interface for core * \author Stefan Kalkowski * \author Martin Stein * \date 2014-02-27 */ /* * Copyright (C) 2014 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 #include #include /* base-internal stack */ #include #include /* core includes */ #include #include #include #include using namespace Genode; namespace Genode { Rm_session *env_stack_area_rm_session(); } namespace Hw { extern Untyped_capability _main_thread_cap; } void Thread_base::start() { /* start thread with stack pointer at the top of stack */ if (_tid.platform_thread->start((void *)&_thread_start, stack_top())) PERR("failed to start thread"); } void Thread_base::cancel_blocking() { _tid.platform_thread->cancel_blocking(); } void Thread_base::_deinit_platform_thread() { /* destruct platform thread */ destroy(platform()->core_mem_alloc(), _tid.platform_thread); } void Thread_base::_init_platform_thread(size_t, Type type) { if (type == NORMAL) { _tid.platform_thread = new (platform()->core_mem_alloc()) Platform_thread(_stack->name().string(), &_stack->utcb()); return; } /* remap initial main-thread UTCB according to stack-area spec */ Genode::map_local((addr_t)Kernel::Core_thread::singleton().utcb(), (addr_t)&_stack->utcb(), max(sizeof(Native_utcb) / get_page_size(), (size_t)1)); /* adjust initial object state in case of a main thread */ tid().cap = Hw::_main_thread_cap.dst(); }