From e93790f05e8c8d76929171b8b70c3c1c92e8676f Mon Sep 17 00:00:00 2001 From: "K. Richard Pixley" Date: Fri, 13 Aug 1993 21:49:51 +0000 Subject: * remote-hms.c (hms_wait): use -1 for timeout's which means block forever rather than 99999. --- gdb/remote-hms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/remote-hms.c') diff --git a/gdb/remote-hms.c b/gdb/remote-hms.c index 126babc5f1d..562f88329d3 100644 --- a/gdb/remote-hms.c +++ b/gdb/remote-hms.c @@ -702,7 +702,7 @@ hms_wait (status) return 0; } - timeout = 99999; /* Don't time out -- user program is running. */ + timeout = -1; /* Don't time out -- user program is running. */ immediate_quit = 1; /* Helps ability to QUIT */ while (1) { -- cgit v1.2.1