mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-11 04:53:04 +00:00
- Cosmetic adjustments according to https://genode.org/documentation/developer-resources/coding_style - Replace manual inclusion of kernel headers by one new compound header foc/syscall.h - Rename namespace Fiasco to Foc
31 lines
592 B
C++
31 lines
592 B
C++
/*
|
|
* \brief Implementation of the Thread API (foc-specific myself())
|
|
* \author Norman Feske
|
|
* \date 2015-04-28
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2015-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>
|
|
|
|
/* base-internal includes */
|
|
#include <base/internal/native_utcb.h>
|
|
|
|
using namespace Genode;
|
|
|
|
|
|
Thread *Thread::myself()
|
|
{
|
|
using namespace Foc;
|
|
|
|
return reinterpret_cast<Thread*>(l4_utcb_tcr()->user[UTCB_TCR_THREAD_OBJ]);
|
|
}
|
|
|
|
|