Merge "adb: detect closed jdwp socket."
This commit is contained in:
commit
e1c4e04f82
1 changed files with 1 additions and 5 deletions
|
|
@ -232,11 +232,7 @@ static void jdwp_process_event(int socket, unsigned events, void* _proc) {
|
||||||
size_t size = PID_LEN - proc->in_len;
|
size_t size = PID_LEN - proc->in_len;
|
||||||
|
|
||||||
ssize_t rc = TEMP_FAILURE_RETRY(recv(socket, p, size, 0));
|
ssize_t rc = TEMP_FAILURE_RETRY(recv(socket, p, size, 0));
|
||||||
if (rc < 0) {
|
if (rc <= 0) {
|
||||||
if (errno == EAGAIN) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
D("failed to read jdwp pid: %s", strerror(errno));
|
D("failed to read jdwp pid: %s", strerror(errno));
|
||||||
goto CloseProcess;
|
goto CloseProcess;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue