Using new RAII epoll instance wrapper in GDB server and Connection class

This commit is contained in:
Nav
2022-03-28 01:04:14 +01:00
parent 2b55f8f5ea
commit b339bfe016
6 changed files with 77 additions and 114 deletions

View File

@@ -20,7 +20,7 @@ namespace Bloom::DebugServers::Gdb
*/
bool waitingForBreak = false;
DebugSession(const Connection& connection, const TargetDescriptor& targetDescriptor);
DebugSession(Connection&& connection, const TargetDescriptor& targetDescriptor);
void terminate();
};