2023-09-10 22:27:10 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
2024-10-25 22:22:25 +01:00
|
|
|
#include "CommandPacket.hpp"
|
2023-09-10 22:27:10 +01:00
|
|
|
|
2024-10-25 23:12:04 +01:00
|
|
|
namespace DebugServer::Gdb::CommandPackets
|
2023-09-10 22:27:10 +01:00
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The VContStepExecution class implements a structure for "vCont;s" and "vCont;S" packets.
|
|
|
|
|
*/
|
2024-10-25 23:12:04 +01:00
|
|
|
class VContStepExecution: public CommandPacket
|
2023-09-10 22:27:10 +01:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit VContStepExecution(const RawPacket& rawPacket);
|
|
|
|
|
|
|
|
|
|
void handle(
|
2024-10-25 22:22:25 +01:00
|
|
|
DebugSession& debugSession,
|
2024-10-25 23:12:04 +01:00
|
|
|
const TargetDescriptor& gdbTargetDescriptor,
|
2024-07-23 21:14:22 +01:00
|
|
|
const Targets::TargetDescriptor& targetDescriptor,
|
2023-09-10 22:27:10 +01:00
|
|
|
Services::TargetControllerService& targetControllerService
|
|
|
|
|
) override;
|
|
|
|
|
};
|
|
|
|
|
}
|