mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-04 01:33:02 +00:00
This patch establishes the sole use of generic headers across all kernels. The common 'native_capability.h' is based on the version of base-sel4. All traditional L4 kernels and Linux use the same implementation of the capability-lifetime management. On base-hw, NOVA, Fiasco.OC, and seL4, custom implementations (based on their original mechanisms) are used, with the potential to unify them further in the future. This change achieves binary compatibility of dynamically linked programs across all kernels. Furthermore, the patch introduces a Native_capability::print method, which allows the easy output of the kernel-specific capability representation using the base/log.h API. Issue #1993
65 lines
1.4 KiB
C++
65 lines
1.4 KiB
C++
/*
|
|
* \brief Fiasco.OC specific thread bootstrap code
|
|
* \author Stefan Kalkowski
|
|
* \author Martin Stein
|
|
* \date 2011-01-20
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2011-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 <util/construct_at.h>
|
|
#include <base/thread.h>
|
|
#include <base/sleep.h>
|
|
#include <foc/native_capability.h>
|
|
|
|
/* base-internal includes */
|
|
#include <base/internal/native_utcb.h>
|
|
#include <base/internal/cap_map.h>
|
|
|
|
|
|
/*****************************
|
|
** Startup library support **
|
|
*****************************/
|
|
|
|
void prepare_init_main_thread()
|
|
{
|
|
using namespace Genode;
|
|
enum { THREAD_CAP_ID = 1 };
|
|
Cap_index * ci(cap_map()->insert(THREAD_CAP_ID, Fiasco::MAIN_THREAD_CAP));
|
|
Fiasco::l4_utcb_tcr()->user[Fiasco::UTCB_TCR_BADGE] = (unsigned long)ci;
|
|
Fiasco::l4_utcb_tcr()->user[Fiasco::UTCB_TCR_THREAD_OBJ] = 0;
|
|
}
|
|
|
|
|
|
void prepare_reinit_main_thread()
|
|
{
|
|
using namespace Genode;
|
|
construct_at<Capability_map>(cap_map());
|
|
cap_idx_alloc()->reinit();
|
|
prepare_init_main_thread();
|
|
}
|
|
|
|
|
|
/************
|
|
** Thread **
|
|
************/
|
|
|
|
void Genode::Thread::_thread_bootstrap() { }
|
|
|
|
|
|
void Genode::Thread::_thread_start()
|
|
{
|
|
using namespace Genode;
|
|
|
|
Thread::myself()->_thread_bootstrap();
|
|
Thread::myself()->entry();
|
|
Thread::myself()->_join_lock.unlock();
|
|
sleep_forever();
|
|
}
|