Debugger: Use new SocketWouldBlock layer

This commit is contained in:
Jeffrey Pfau 2015-02-23 23:27:56 -08:00
parent c73ea2e595
commit 5d1b05c990
1 changed files with 2 additions and 2 deletions

View File

@ -533,7 +533,7 @@ void GDBStubUpdate(struct GDBStub* stub) {
goto connectionLost;
}
ARMDebuggerEnter(&stub->d, DEBUGGER_ENTER_ATTACHED, 0);
} else if (errno == EWOULDBLOCK || errno == EAGAIN) {
} else if (SocketWouldBlock()) {
return;
} else {
goto connectionLost;
@ -549,7 +549,7 @@ void GDBStubUpdate(struct GDBStub* stub) {
goto connectionLost;
}
if (messageLen == -1) {
if (errno == EWOULDBLOCK || errno == EAGAIN) {
if (SocketWouldBlock()) {
return;
}
goto connectionLost;