Qt: Implement GDB server

This commit is contained in:
Jean-Baptiste Boric
2020-12-17 18:32:29 +01:00
committed by Connor McLaughlin
parent abd2399aaf
commit 7dcacc2cda
9 changed files with 191 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#pragma once
#include <QtCore/QThread>
#include <QtNetwork/QTcpSocket>
class GDBConnection : public QThread
{
Q_OBJECT
public:
GDBConnection(QObject *parent, int descriptor);
public Q_SLOTS:
void gotDisconnected();
void receivedData();
void onEmulationPaused(bool paused);
private:
void writePacket(std::string_view data);
int m_descriptor;
QTcpSocket m_socket;
std::string m_readBuffer;
bool m_seen_resume;
};