Renamed GdbRsp directory to Gdb

This commit is contained in:
Nav
2022-03-31 21:52:46 +01:00
parent 01d52bb130
commit 2aa240a680
57 changed files with 64 additions and 64 deletions

View File

@@ -0,0 +1,27 @@
#pragma once
#include <cstdint>
#include "TargetDescriptor.hpp"
#include "Connection.hpp"
namespace Bloom::DebugServer::Gdb
{
class DebugSession
{
public:
Connection connection;
const TargetDescriptor& targetDescriptor;
/**
* When the GDB client is waiting for the target to halt, this is set to true so we know when to notify the
* client.
*/
bool waitingForBreak = false;
DebugSession(Connection&& connection, const TargetDescriptor& targetDescriptor);
void terminate();
};
}