summaryrefslogtreecommitdiff
path: root/gdb/remote-hms.c
diff options
context:
space:
mode:
authorK. Richard Pixley <rich@cygnus>1993-08-13 21:49:51 +0000
committerK. Richard Pixley <rich@cygnus>1993-08-13 21:49:51 +0000
commite93790f05e8c8d76929171b8b70c3c1c92e8676f (patch)
treeff0046d95cdd42d01edbe9d23cdd3ae6ac284c49 /gdb/remote-hms.c
parent057c2f477346a2b96f06cff1ae60010f47f05976 (diff)
downloadbinutils-gdb-e93790f05e8c8d76929171b8b70c3c1c92e8676f.tar.gz
* remote-hms.c (hms_wait): use -1 for timeout's which means block
forever rather than 99999.
Diffstat (limited to 'gdb/remote-hms.c')
-rw-r--r--gdb/remote-hms.c2
1 files changed, 1 insertions, 1 deletions
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)
{