mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-26 08:51:08 +00:00
fcd62729d4
The cpu_session interface fails to be virtualized by gdb_monitor because platform-nova uses an extended nova_cpu_session interface. The problem was that threads have been created directly at core without knowledge of gdb_monitor. This lead to the situation that gdb_monitor didn't know of all threads to be debugged. Tunnel the additional parameters required on base-nova through the state() call of the cpu_session interface before the thread actual is started.
47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
/*
|
|
* \brief Cpu session interface extension for NOVA
|
|
* \author Alexander Boettcher
|
|
* \date 2012-07-27
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2012-2012 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__NOVA_CPU_SESSION__NOVA_CPU_SESSION_H_
|
|
#define _INCLUDE__NOVA_CPU_SESSION__NOVA_CPU_SESSION_H_
|
|
|
|
#include <base/stdint.h>
|
|
#include <cpu_session/cpu_session.h>
|
|
|
|
namespace Genode {
|
|
|
|
struct Nova_cpu_session : Cpu_session
|
|
{
|
|
virtual ~Nova_cpu_session() { }
|
|
|
|
virtual
|
|
Native_capability native_cap(Thread_capability cap) = 0;
|
|
|
|
virtual
|
|
Native_capability pause_sync(Thread_capability) = 0;
|
|
|
|
/*********************
|
|
** RPC declaration **
|
|
*********************/
|
|
|
|
GENODE_RPC(Rpc_native_cap, Native_capability, native_cap,
|
|
Thread_capability);
|
|
GENODE_RPC(Rpc_pause_sync, Native_capability, pause_sync,
|
|
Thread_capability);
|
|
|
|
GENODE_RPC_INTERFACE_INHERIT(Cpu_session, Rpc_native_cap,
|
|
Rpc_pause_sync);
|
|
};
|
|
}
|
|
|
|
#endif /* _INCLUDE__NOVA_CPU_SESSION__NOVA_CPU_SESSION_H_ */
|