From 5d1b05c9904bdc3dc285f0278b3f9cb928640ac8 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Mon, 23 Feb 2015 23:27:56 -0800 Subject: [PATCH] Debugger: Use new SocketWouldBlock layer --- src/debugger/gdb-stub.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debugger/gdb-stub.c b/src/debugger/gdb-stub.c index 57be118e2..f7f2358af 100644 --- a/src/debugger/gdb-stub.c +++ b/src/debugger/gdb-stub.c @@ -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;