/* * \brief Fiasco-specific implementation of the non-core startup Thread API * \author Norman Feske * \author Stefan Kalkowski * \date 2010-01-19 */ /* * Copyright (C) 2010-2013 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 #include namespace Fiasco { #include } using namespace Genode; void Thread_base::_deinit_platform_thread() { using namespace Fiasco; if (_context->utcb && _thread_cap.valid()) { Cap_index *i = (Cap_index*)l4_utcb_tcr_u(_context->utcb)->user[UTCB_TCR_BADGE]; cap_map()->remove(i); env()->cpu_session()->kill_thread(_thread_cap); env()->rm_session()->remove_client(_pager_cap); } } void Genode::Thread_base::_init_platform_thread() { /* create thread at core */ char buf[48]; name(buf, sizeof(buf)); _thread_cap = env()->cpu_session()->create_thread(buf); /* assign thread to protection domain */ env()->pd_session()->bind_thread(_thread_cap); } void Thread_base::start() { using namespace Fiasco; /* create new pager object and assign it to the new thread */ _pager_cap = env()->rm_session()->add_client(_thread_cap); env()->cpu_session()->set_pager(_thread_cap, _pager_cap); /* get gate-capability and badge of new thread */ Thread_state state; try { state = env()->cpu_session()->state(_thread_cap); } catch (...) { throw Cpu_session::Thread_creation_failed(); } _tid = state.kcap; _context->utcb = state.utcb; Cap_index *i = cap_map()->insert(state.id, state.kcap); l4_utcb_tcr_u(state.utcb)->user[UTCB_TCR_BADGE] = (unsigned long) i; l4_utcb_tcr_u(state.utcb)->user[UTCB_TCR_THREAD_OBJ] = (addr_t)this; /* register initial IP and SP at core */ env()->cpu_session()->start(_thread_cap, (addr_t)_thread_start, _context->stack_top()); } void Thread_base::cancel_blocking() { env()->cpu_session()->cancel_blocking(_thread_cap); }