* remote-nindy.c (nindy_wait): Change timeout in SERIAL_READCHAR.

This commit is contained in:
Kung Hsu 1995-06-22 20:16:56 +00:00
parent d513119138
commit 89fd75ae2b
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Thu Jun 22 13:12:33 1995 Kung Hsu <kung@mexican.cygnus.com>
* remote-nindy.c (nindy_wait): Change timeout in SERIAL_READCHAR.
Wed Jun 21 13:24:41 1995 Jeff Law (law@snake.cs.utah.edu)
* hppam3-nat.c: Change HP800_THREAD_STATE to TRACE_FLAVOR and

View File

@ -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 */