mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 20:42:56 +01:00
57 lines
1.1 KiB
C++
57 lines
1.1 KiB
C++
/*
|
|
* \brief Thread bootstrap code
|
|
* \author Christian Prochaska
|
|
* \date 2013-02-15
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2013-2017 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
/* Genode includes */
|
|
#include <base/thread.h>
|
|
#include <base/env.h>
|
|
|
|
/* base-internal includes */
|
|
#include <base/internal/native_thread.h>
|
|
#include <base/internal/globals.h>
|
|
#include <base/internal/pistachio.h>
|
|
|
|
Pistachio::L4_ThreadId_t main_thread_tid;
|
|
|
|
|
|
/*****************************
|
|
** Startup library support **
|
|
*****************************/
|
|
|
|
void prepare_init_main_thread()
|
|
{
|
|
main_thread_tid = Pistachio::L4_Myself();
|
|
}
|
|
|
|
void prepare_reinit_main_thread() { prepare_init_main_thread(); }
|
|
|
|
|
|
/************
|
|
** Thread **
|
|
************/
|
|
|
|
void Genode::Thread::_thread_bootstrap()
|
|
{
|
|
native_thread().l4id = Pistachio::L4_Myself();
|
|
}
|
|
|
|
|
|
void Genode::Thread::_init_platform_thread(size_t, Type type)
|
|
{
|
|
if (type == NORMAL)
|
|
return;
|
|
|
|
native_thread().l4id = main_thread_tid;
|
|
|
|
_thread_cap = main_thread_cap();
|
|
}
|