mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
This patch cleans up the thread API and comes with the following noteworthy changes: - Introduced Cpu_session::Weight type that replaces a formerly used plain integer value to prevent the accidental mix-up of arguments. - The enum definition of Cpu_session::DEFAULT_WEIGHT moved to Cpu_session::Weight::DEFAULT_WEIGHT - New Thread constructor that takes a 'Env &' as first argument. The original constructors are now marked as deprecated. For the common use case where the default 'Weight' and 'Affinity' are used, a shortcut is provided. In the long term, those two constructors should be the only ones to remain. - The former 'Thread<>' class template has been renamed to 'Thread_deprecated'. - The former 'Thread_base' class is now called 'Thread'. - The new 'name()' accessor returns the thread's name as 'Name' object as centrally defined via 'Cpu_session::Name'. It is meant to replace the old-fashioned 'name' method that takes a buffer and size as arguments. - Adaptation of the thread test to the new API Issue #1954
53 lines
816 B
C++
53 lines
816 B
C++
/*
|
|
* \brief seL4-specific implementation of the Thread API
|
|
* \author Norman Feske
|
|
* \date 2014-10-14
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2014 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>
|
|
#include <base/printf.h>
|
|
#include <base/sleep.h>
|
|
#include <base/env.h>
|
|
|
|
#include <base/rpc_client.h>
|
|
#include <session/session.h>
|
|
|
|
|
|
using namespace Genode;
|
|
|
|
|
|
/************
|
|
** Thread **
|
|
************/
|
|
|
|
void Thread::_init_platform_thread(size_t, Type type)
|
|
{
|
|
PDBG("not implemented");
|
|
}
|
|
|
|
|
|
void Thread::_deinit_platform_thread()
|
|
{
|
|
PDBG("not implemented");
|
|
}
|
|
|
|
|
|
void Thread::start()
|
|
{
|
|
PDBG("not implemented");
|
|
}
|
|
|
|
|
|
void Thread::cancel_blocking()
|
|
{
|
|
PDBG("not implemented");
|
|
}
|