From 89fd75ae2b6c679eb012b17011c14234f077fcce Mon Sep 17 00:00:00 2001 From: Kung Hsu Date: Thu, 22 Jun 1995 20:16:56 +0000 Subject: * remote-nindy.c (nindy_wait): Change timeout in SERIAL_READCHAR. --- gdb/remote-nindy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/remote-nindy.c') diff --git a/gdb/remote-nindy.c b/gdb/remote-nindy.c index 7876d5b..0fcaf2f 100644 --- a/gdb/remote-nindy.c +++ b/gdb/remote-nindy.c @@ -359,14 +359,14 @@ nindy_wait( pid, status ) while (1) { /* Input on remote */ - c = SERIAL_READCHAR (nindy_serial, 0); + c = SERIAL_READCHAR (nindy_serial, -1); if (c == SERIAL_ERROR) { error ("Cannot read from serial line"); } else if (c == 0x1b) /* ESC */ { - c = SERIAL_READCHAR (nindy_serial, 0); + c = SERIAL_READCHAR (nindy_serial, 1); c &= ~0x40; } else if (c != 0x10) /* DLE */ -- cgit v1.1