mirror of
https://github.com/genodelabs/genode.git
synced 2025-03-11 15:04:20 +00:00
This patch replaces the former 'Pd_session::bind_thread' function by a PD-capability argument of the 'Cpu_session::create_thread' function, and removes the ancient thread-start protocol via 'Rm_session::add_client' and 'Cpu_session::set_pager'. Threads are now bound to PDs at their creation time and implicitly paged according to the address space of the PD. Note the API change: This patch changes the signature of the 'Child' and 'Process' constructors. There is a new 'address_space' argument, which represents the region map representing the child's address space. It is supplied separately to the PD session capability (which principally can be invoked to obtain the PD's address space) to allow the population of the address space without relying on an 'Pd_session::address_space' RPC call. Furthermore, a new (optional) env_pd argument allows the explicit overriding of the PD capability handed out to the child as part of its environment. It can be used to intercept the interaction of the child with its PD session at core. This is used by Noux. Issue #1938
117 lines
3.5 KiB
C++
117 lines
3.5 KiB
C++
/*
|
|
* \brief Client-side cpu session NOVA extension
|
|
* \author Alexander Boettcher
|
|
* \date 2012-07-27
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2012-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__CPU_SESSION__CLIENT_H_
|
|
#define _INCLUDE__CPU_SESSION__CLIENT_H_
|
|
|
|
#include <base/rpc_client.h>
|
|
#include <base/thread.h>
|
|
|
|
#include <cpu_session/capability.h>
|
|
|
|
#include <nova_cpu_session/nova_cpu_session.h>
|
|
|
|
namespace Genode {
|
|
|
|
struct Cpu_session_client : Rpc_client<Nova_cpu_session>
|
|
{
|
|
explicit Cpu_session_client(Cpu_session_capability session)
|
|
: Rpc_client<Nova_cpu_session>(static_cap_cast<Nova_cpu_session>(session)) { }
|
|
|
|
Thread_capability
|
|
create_thread(Capability<Pd_session> pd, size_t quota, Name const &name,
|
|
Affinity::Location affinity, addr_t utcb = 0) override {
|
|
return call<Rpc_create_thread>(pd, quota, name, affinity, utcb); }
|
|
|
|
Ram_dataspace_capability utcb(Thread_capability thread) override {
|
|
return call<Rpc_utcb>(thread); }
|
|
|
|
void kill_thread(Thread_capability thread) override {
|
|
call<Rpc_kill_thread>(thread); }
|
|
|
|
int start(Thread_capability thread, addr_t ip, addr_t sp) override {
|
|
return call<Rpc_start>(thread, ip, sp); }
|
|
|
|
void pause(Thread_capability thread) override
|
|
{
|
|
Native_capability block = call<Rpc_pause_sync>(thread);
|
|
if (!block.valid())
|
|
return;
|
|
|
|
Nova::sm_ctrl(block.local_name(), Nova::SEMAPHORE_DOWN);
|
|
}
|
|
|
|
void resume(Thread_capability thread) override {
|
|
call<Rpc_resume>(thread); }
|
|
|
|
void cancel_blocking(Thread_capability thread) override {
|
|
call<Rpc_cancel_blocking>(thread); }
|
|
|
|
Thread_state state(Thread_capability thread) override {
|
|
return call<Rpc_get_state>(thread); }
|
|
|
|
void state(Thread_capability thread, Thread_state const &state) override {
|
|
call<Rpc_set_state>(thread, state); }
|
|
|
|
void exception_handler(Thread_capability thread, Signal_context_capability handler) override {
|
|
call<Rpc_exception_handler>(thread, handler); }
|
|
|
|
void single_step(Thread_capability thread, bool enable) override
|
|
{
|
|
Native_capability block = call<Rpc_single_step_sync>(thread, enable);
|
|
if (!block.valid())
|
|
return;
|
|
|
|
Nova::sm_ctrl(block.local_name(), Nova::SEMAPHORE_DOWN);
|
|
}
|
|
|
|
Affinity::Space affinity_space() const override {
|
|
return call<Rpc_affinity_space>(); }
|
|
|
|
void affinity(Thread_capability thread, Affinity::Location location) override {
|
|
call<Rpc_affinity>(thread, location); }
|
|
|
|
Dataspace_capability trace_control() override {
|
|
return call<Rpc_trace_control>(); }
|
|
|
|
unsigned trace_control_index(Thread_capability thread) override {
|
|
return call<Rpc_trace_control_index>(thread); }
|
|
|
|
Dataspace_capability trace_buffer(Thread_capability thread) override {
|
|
return call<Rpc_trace_buffer>(thread); }
|
|
|
|
Dataspace_capability trace_policy(Thread_capability thread) override {
|
|
return call<Rpc_trace_policy>(thread); }
|
|
|
|
int ref_account(Cpu_session_capability session) override {
|
|
return call<Rpc_ref_account>(session); }
|
|
|
|
int transfer_quota(Cpu_session_capability session, size_t amount) override {
|
|
return call<Rpc_transfer_quota>(session, amount); }
|
|
|
|
Quota quota() override { return call<Rpc_quota>(); }
|
|
|
|
Capability<Native_cpu> native_cpu() override { return call<Rpc_native_cpu>(); }
|
|
|
|
private:
|
|
|
|
Native_capability pause_sync(Thread_capability) {
|
|
return Native_capability(); }
|
|
|
|
Native_capability single_step_sync(Thread_capability, bool) {
|
|
return Native_capability(); }
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__CPU_SESSION__CLIENT_H_ */
|