mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-08 14:02:56 +00:00
67ba7b89a7
* Introduce Hw namespace and library files under src/lib/hw * Introduce Bootstrap namespace * Move all initialization logic into Bootstrap namespace Ref #2388
26 lines
514 B
C++
26 lines
514 B
C++
/*
|
|
* \brief Thread implementation needed by cxx library
|
|
* \author Stefan Kalkowski
|
|
* \date 2016-10-19
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2016-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.
|
|
*/
|
|
|
|
#include <base/thread.h>
|
|
#include <hw/assert.h>
|
|
|
|
|
|
Genode::Thread * Genode::Thread::myself()
|
|
{
|
|
assert(false);
|
|
return nullptr;
|
|
}
|
|
|
|
|
|
Genode::Thread::Name Genode::Thread::name() const { return "bootstrap"; }
|