2022-03-24 19:07:28 +00:00
|
|
|
#include "DebugSession.hpp"
|
|
|
|
|
|
|
|
|
|
#include "src/Logger/Logger.hpp"
|
|
|
|
|
|
2022-03-31 16:05:39 +01:00
|
|
|
namespace Bloom::DebugServer::Gdb
|
2022-03-24 19:07:28 +00:00
|
|
|
{
|
2022-03-28 01:04:14 +01:00
|
|
|
DebugSession::DebugSession(Connection&& connection, const TargetDescriptor& targetDescriptor)
|
|
|
|
|
: connection(std::move(connection))
|
2022-05-04 19:49:18 +01:00
|
|
|
, gdbTargetDescriptor(targetDescriptor)
|
2022-03-24 19:07:28 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
void DebugSession::terminate() {
|
2022-03-29 14:54:49 +01:00
|
|
|
|
2022-03-24 19:07:28 +00:00
|
|
|
}
|
|
|
|
|
}
|