mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 15:02:25 +00:00
eba9c15746
The patch adjust the code of the base, base-<kernel>, and os repository. To adapt existing components to fix violations of the best practices suggested by "Effective C++" as reported by the -Weffc++ compiler argument. The changes follow the patterns outlined below: * A class with virtual functions can no longer publicly inherit base classed without a vtable. The inherited object may either be moved to a member variable, or inherited privately. The latter would be used for classes that inherit 'List::Element' or 'Avl_node'. In order to enable the 'List' and 'Avl_tree' to access the meta data, the 'List' must become a friend. * Instead of adding a virtual destructor to abstract base classes, we inherit the new 'Interface' class, which contains a virtual destructor. This way, single-line abstract base classes can stay as compact as they are now. The 'Interface' utility resides in base/include/util/interface.h. * With the new warnings enabled, all member variables must be explicitly initialized. Basic types may be initialized with '='. All other types are initialized with braces '{ ... }' or as class initializers. If basic types and non-basic types appear in a row, it is nice to only use the brace syntax (also for basic types) and align the braces. * If a class contains pointers as members, it must now also provide a copy constructor and assignment operator. In the most cases, one would make them private, effectively disallowing the objects to be copied. Unfortunately, this warning cannot be fixed be inheriting our existing 'Noncopyable' class (the compiler fails to detect that the inheriting class cannot be copied and still gives the error). For now, we have to manually add declarations for both the copy constructor and assignment operator as private class members. Those declarations should be prepended with a comment like this: /* * Noncopyable */ Thread(Thread const &); Thread &operator = (Thread const &); In the future, we should revisit these places and try to replace the pointers with references. In the presence of at least one reference member, the compiler would no longer implicitly generate a copy constructor. So we could remove the manual declaration. Issue #465
64 lines
2.1 KiB
C++
64 lines
2.1 KiB
C++
/*
|
|
* \brief Kernel-specific thread meta data
|
|
* \author Norman Feske
|
|
* \date 2016-03-11
|
|
*
|
|
* On most platforms, the 'Genode::Native_thread' type is private to the
|
|
* base framework. However, on NOVA, we make the type publicly available to
|
|
* expose the low-level thread-specific capability selectors to user-level
|
|
* virtual-machine monitors (Seoul or VirtualBox).
|
|
*/
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__NOVA__NATIVE_THREAD_H_
|
|
#define _INCLUDE__NOVA__NATIVE_THREAD_H_
|
|
|
|
#include <base/stdint.h>
|
|
#include <nova/receive_window.h>
|
|
|
|
namespace Genode { struct Native_thread; }
|
|
|
|
struct Genode::Native_thread
|
|
{
|
|
static constexpr unsigned long INVALID_INDEX = ~0UL;
|
|
|
|
addr_t ec_sel { 0 }; /* selector for execution context */
|
|
addr_t exc_pt_sel { 0 }; /* base of event portal window */
|
|
bool vcpu { false }; /* true if thread is a virtual CPU */
|
|
addr_t initial_ip { 0 }; /* initial IP of local thread */
|
|
|
|
/* receive window for capability selectors received at the server side */
|
|
Receive_window server_rcv_window { };
|
|
|
|
/*
|
|
* Designated selector to populate with the result of an IPC call
|
|
*
|
|
* By default, the client-side receive window for delegated selectors
|
|
* is automatically allocated within the component's selector space.
|
|
* However, in special cases such as during the initialization of a
|
|
* user-level VMM (ports/include/vmm/vcpu_dispatcher.h), the targeted
|
|
* selector is defined manually. The 'client_rcv_sel' provides the
|
|
* hook for such a manual allocation. If it contains a valid selector
|
|
* value, the value is used as the basis of the receive window of an
|
|
* 'ipc_call'.
|
|
*/
|
|
addr_t client_rcv_sel = INVALID_INDEX;
|
|
|
|
void reset_client_rcv_sel() { client_rcv_sel = INVALID_INDEX; }
|
|
|
|
Native_capability pager_cap { };
|
|
|
|
Native_thread() : ec_sel(INVALID_INDEX),
|
|
exc_pt_sel(INVALID_INDEX),
|
|
vcpu(false),
|
|
initial_ip(0) { }
|
|
};
|
|
|
|
#endif /* _INCLUDE__NOVA__NATIVE_THREAD_H_ */
|