diff options
author | Christopher Faylor <me@cgf.cx> | 2000-10-21 04:53:49 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-10-21 04:53:49 +0000 |
commit | b0de2aa284ccb58f1c8f8e0a598701b51ab5b742 (patch) | |
tree | e9de21c89264e0f9987ab88dab845446c1b4bc45 /winsup/cygwin/fhandler_termios.cc | |
parent | e9921bcbaa37b9c3df39ef1d8182d56a9db3cb11 (diff) | |
download | cygnal-b0de2aa284ccb58f1c8f8e0a598701b51ab5b742.tar.gz cygnal-b0de2aa284ccb58f1c8f8e0a598701b51ab5b742.tar.bz2 cygnal-b0de2aa284ccb58f1c8f8e0a598701b51ab5b742.zip |
* fhandler.h (fhandler_console): Remove tcsetpgrp.
* fhandler_console.cc (fhandler_console::tcsetpgrp): Eliminate.
* fork.cc (fork_parent): Avoid returning same pid twice in a row regardless of
OS.
* pinfo.cc (pinfo::init): Rename create argument to flags and treat it as such.
* signal.cc (set_sigcatchers): New function.
(signal): Use set_sigcatchers to increment or decrement sigcatcher tracker.
(sigaction): Ditto. Add debugging output.
* spawn.cc (spawn_guts): Always quote first argv[0] argument when it's a
COMSPEC shell.
Diffstat (limited to 'winsup/cygwin/fhandler_termios.cc')
-rw-r--r-- | winsup/cygwin/fhandler_termios.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/winsup/cygwin/fhandler_termios.cc b/winsup/cygwin/fhandler_termios.cc index 9a91cb915..014e7d104 100644 --- a/winsup/cygwin/fhandler_termios.cc +++ b/winsup/cygwin/fhandler_termios.cc @@ -293,9 +293,6 @@ fhandler_termios::line_edit (const char *rptr, int nread, int always_accept) if (!iscanon || always_accept) set_input_done (ralen > 0); - /* FIXME: It's not clear that this code will ever do anything. - Currently, it doesn't look like accept_input will ever return - a negative number. */ if (input_done) (void) accept_input (); |