/* * \brief Kernel-specific part of the CPU-session interface * \author Norman Feske * \date 2016-01-19 * * This definition is used on platforms with no kernel-specific PD functions */ /* * 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 _CORE__INCLUDE__NATIVE_CPU_COMPONENT_H_ #define _CORE__INCLUDE__NATIVE_CPU_COMPONENT_H_ /* Genode includes */ #include namespace Genode { class Cpu_session_component; class Native_cpu_component; } class Genode::Native_cpu_component : public Rpc_object { private: Cpu_session_component &_cpu_session; Rpc_entrypoint &_thread_ep; public: Native_cpu_component(Cpu_session_component &, char const *); ~Native_cpu_component(); void thread_id(Thread_capability, int, int) override; }; #endif /* _CORE__INCLUDE__NATIVE_CPU_COMPONENT_H_ */