* sigproc.cc (wait_sig): Add braces to avoid confusion.
This commit is contained in:
parent
afd5033d83
commit
018a91fa2e
|
@ -1,3 +1,7 @@
|
|||
Fri Oct 27 11:37:20 2000 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* sigproc.cc (wait_sig): Add braces to avoid confusion.
|
||||
|
||||
Fri Oct 27 11:48:00 2000 Corinna Vinschen <corinna@vinschen.de>
|
||||
|
||||
* fhandler_socket.cc: New file.
|
||||
|
|
|
@ -1121,10 +1121,12 @@ wait_sig (VOID *)
|
|||
* this thread should terminate.
|
||||
*/
|
||||
if (rc == WAIT_TIMEOUT)
|
||||
if (!sig_loop_wait)
|
||||
break; // Exiting
|
||||
else
|
||||
continue;
|
||||
{
|
||||
if (!sig_loop_wait)
|
||||
break; // Exiting
|
||||
else
|
||||
continue;
|
||||
}
|
||||
|
||||
if (rc == WAIT_FAILED)
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* tty.h: shared info for cygwin
|
||||
/* tty.h: shared tty info for cygwin
|
||||
|
||||
Copyright 2000 Cygnus Solutions.
|
||||
|
||||
|
|
Loading…
Reference in New Issue