genode/base-hw/src/base/thread/thread_bootstrap.cc

25 lines
472 B
C++

/*
* \brief Thread bootstrap code
* \author Christian Prochaska
* \date 2013-02-15
*/
/*
* Copyright (C) 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 <base/thread.h>
/* base-hw includes */
#include <kernel/interface.h>
void Genode::Thread_base::_thread_bootstrap()
{
_tid.tid = Kernel::current_thread_id();
}