mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-17 18:55:46 +00:00
gdb: Abort if unable to start GDB server (ryubing/ryujinx!186)
See merge request ryubing/ryujinx!186
This commit is contained in:
@@ -21,8 +21,9 @@ namespace Ryujinx.HLE.Debugger
|
|||||||
}
|
}
|
||||||
catch (SocketException se)
|
catch (SocketException se)
|
||||||
{
|
{
|
||||||
Logger.Notice.Print(LogClass.GdbStub, $"Failed to create TCP client for GDB client: {Enum.GetName(se.SocketErrorCode)}");
|
Logger.Error?.Print(LogClass.GdbStub,
|
||||||
return;
|
$"Failed to create TCP server on {endpoint} for GDB client: {Enum.GetName(se.SocketErrorCode)}");
|
||||||
|
throw;
|
||||||
}
|
}
|
||||||
|
|
||||||
Logger.Notice.Print(LogClass.GdbStub, $"Currently waiting on {endpoint} for GDB client");
|
Logger.Notice.Print(LogClass.GdbStub, $"Currently waiting on {endpoint} for GDB client");
|
||||||
@@ -33,8 +34,10 @@ namespace Ryujinx.HLE.Debugger
|
|||||||
{
|
{
|
||||||
_clientSocket = _listenerSocket.AcceptSocket();
|
_clientSocket = _listenerSocket.AcceptSocket();
|
||||||
}
|
}
|
||||||
catch (SocketException)
|
catch (SocketException se)
|
||||||
{
|
{
|
||||||
|
Logger.Error?.Print(LogClass.GdbStub,
|
||||||
|
$"Failed to accept incoming GDB client connection: {Enum.GetName(se.SocketErrorCode)}");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user