/* * \brief Client-side CPU session interface * \author Norman Feske * \date 2012-08-09 */ /* * Copyright (C) 2006-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__LINUX_CPU_SESSION__CLIENT_H_ #define _INCLUDE__LINUX_CPU_SESSION__CLIENT_H_ #include #include namespace Genode { struct Linux_cpu_session_client : Rpc_client { explicit Linux_cpu_session_client(Capability session) : Rpc_client(session) { } Thread_capability create_thread(size_t weight, Name const &name, addr_t utcb = 0) { return call(weight, name, utcb); } Ram_dataspace_capability utcb(Thread_capability thread) { return call(thread); } void kill_thread(Thread_capability thread) { call(thread); } int set_pager(Thread_capability thread, Pager_capability pager) { return call(thread, pager); } int start(Thread_capability thread, addr_t ip, addr_t sp) { return call(thread, ip, sp); } void pause(Thread_capability thread) { call(thread); } void resume(Thread_capability thread) { call(thread); } void cancel_blocking(Thread_capability thread) { call(thread); } Thread_state state(Thread_capability thread) { return call(thread); } void state(Thread_capability thread, Thread_state const &state) { call(thread, state); } void exception_handler(Thread_capability thread, Signal_context_capability handler) { call(thread, handler); } void single_step(Thread_capability thread, bool enable) { call(thread, enable); } Affinity::Space affinity_space() const { return call(); } void affinity(Thread_capability thread, Affinity::Location location) { call(thread, location); } Dataspace_capability trace_control() { return call(); } unsigned trace_control_index(Thread_capability thread) { return call(thread); } Dataspace_capability trace_buffer(Thread_capability thread) { return call(thread); } Dataspace_capability trace_policy(Thread_capability thread) { return call(thread); } int ref_account(Cpu_session_capability session) { return call(session); } int transfer_quota(Cpu_session_capability session, size_t amount) { return call(session, amount); } Quota quota() override { return call(); } /***************************** * Linux-specific extension ** *****************************/ void thread_id(Thread_capability thread, int pid, int tid) { call(thread, pid, tid); } Untyped_capability server_sd(Thread_capability thread) { return call(thread); } Untyped_capability client_sd(Thread_capability thread) { return call(thread); } }; } #endif /* _INCLUDE__LINUX_CPU_SESSION__CLIENT_H_ */