2016-11-07 17:00:24 +00:00
|
|
|
/*
|
|
|
|
* \brief Thread implementation needed by cxx library
|
|
|
|
* \author Stefan Kalkowski
|
|
|
|
* \date 2016-10-19
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2016-2017 Genode Labs GmbH
|
2016-11-07 17:00:24 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2016-11-07 17:00:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <base/thread.h>
|
2017-02-21 12:46:59 +00:00
|
|
|
#include <hw/assert.h>
|
2016-11-07 17:00:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
Genode::Thread * Genode::Thread::myself()
|
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Genode::Thread::Name Genode::Thread::name() const { return "bootstrap"; }
|