mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-18 00:18:11 +00:00
* remote-hms.c (hms_wait): use -1 for timeout's which means block
forever rather than 99999.
This commit is contained in:
parent
057c2f4773
commit
e93790f05e
@ -1,5 +1,8 @@
|
||||
Fri Aug 13 14:37:05 1993 K. Richard Pixley (rich@sendai.cygnus.com)
|
||||
|
||||
* remote-hms.c (hms_wait): use -1 for timeout's which means block
|
||||
forever rather than 99999.
|
||||
|
||||
* ser-unix.c (get_tty_state): if a descriptor is not a tty, then
|
||||
simply save encode this fact as the process group and return
|
||||
success rather than an error.
|
||||
|
@ -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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user