/* * \brief CPU root interface * \author Christian Helmuth * \date 2006-07-17 */ /* * 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 _CPU_ROOT_H_ #define _CPU_ROOT_H_ /* Genode includes */ #include /* core includes */ #include /* GDB monitor includes */ #include "gdb_stub_thread.h" namespace Gdb_monitor { class Cpu_root : public Root_component { private: Gdb_stub_thread *_gdb_stub_thread; protected: Cpu_session_component *_create_session(const char *args) { Cpu_session_component *cpu_session_component = new (md_alloc()) Cpu_session_component(_gdb_stub_thread->exception_signal_receiver(), args); _gdb_stub_thread->set_cpu_session_component(cpu_session_component); return cpu_session_component; } public: /** * Constructor * * \param session_ep entry point for managing cpu session objects * \param thread_ep entry point for managing threads * \param md_alloc meta data allocator to be used by root component */ Cpu_root(Rpc_entrypoint *session_ep, Allocator *md_alloc, Gdb_stub_thread *gdb_stub_thread) : Root_component(session_ep, md_alloc), _gdb_stub_thread(gdb_stub_thread) { } }; } #endif /* _CPU_ROOT_H_ */