mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 00:41:08 +00:00
fd401bdf53
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
67 lines
1.4 KiB
C++
67 lines
1.4 KiB
C++
/*
|
|
* \brief Guard to save a UTCB and restore it during guard destruction
|
|
* \author Alexander Boettcher
|
|
* \date 2013-07-05
|
|
*/
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__VMM__UTCB_GUARD_H_
|
|
#define _INCLUDE__VMM__UTCB_GUARD_H_
|
|
|
|
/* Genode includes */
|
|
#include <base/printf.h>
|
|
#include <util/string.h>
|
|
|
|
/* NOVA syscalls */
|
|
#include <nova/syscalls.h>
|
|
|
|
|
|
namespace Vmm {
|
|
using namespace Genode;
|
|
class Utcb_guard;
|
|
}
|
|
|
|
|
|
class Vmm::Utcb_guard
|
|
{
|
|
public:
|
|
|
|
struct Utcb_backup { char buf[Nova::Utcb::size()]; };
|
|
|
|
private:
|
|
|
|
Utcb_backup &_backup_utcb;
|
|
|
|
public:
|
|
|
|
Utcb_guard(Utcb_backup &backup_utcb) : _backup_utcb(backup_utcb)
|
|
{
|
|
Nova::Utcb *utcb =
|
|
reinterpret_cast<Nova::Utcb *>(Thread::myself()->utcb());
|
|
|
|
unsigned header_len = (char *)utcb->msg - (char *)utcb;
|
|
unsigned len = header_len + utcb->msg_words() * sizeof(Nova::mword_t);
|
|
Genode::memcpy(&_backup_utcb, utcb, len);
|
|
|
|
if (utcb->msg_items())
|
|
PWRN("Error: msg items on UTCB are not saved and restored!");
|
|
}
|
|
|
|
~Utcb_guard()
|
|
{
|
|
Nova::Utcb *utcb = reinterpret_cast<Nova::Utcb *>(&_backup_utcb);
|
|
|
|
unsigned header_len = (char *)utcb->msg - (char *)utcb;
|
|
unsigned len = header_len + utcb->msg_words() * sizeof(Nova::mword_t);
|
|
Genode::memcpy(Thread::myself()->utcb(), utcb, len);
|
|
}
|
|
};
|
|
|
|
#endif /* _INCLUDE__VMM__UTCB_GUARD_H_ */
|