Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEgor Duda <deo@logos-m.ru>2001-03-12 23:39:40 +0300
committerEgor Duda <deo@logos-m.ru>2001-03-12 23:39:40 +0300
commit79409dc0a2624e5f601e6e9d7f736fcd8a8e1c99 (patch)
tree81ae535562874832b65690d2ae897d2acd422a6d /winsup/cygwin/fhandler.h
parent17bd7f5a378501cd9338cf691942aeaedcd8f750 (diff)
* fhandler.h (fhandler_termios::fhandler_termios): Enable fixup
after fork. * fhandler_console.cc (fhandler_console::fhandler_console): Fixup after fork is now enabled in the base class constructor.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r--winsup/cygwin/fhandler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h
index 1553f0ef5..155e2a8d4 100644
--- a/winsup/cygwin/fhandler.h
+++ b/winsup/cygwin/fhandler.h
@@ -568,7 +568,7 @@ public:
fhandler_termios (DWORD dev, const char *name = 0, int unit = 0) :
fhandler_base (dev, name, unit)
{
- // nothing to do
+ set_need_fork_fixup ();
}
HANDLE& get_output_handle () { return output_handle; }
int line_edit (const char *rptr, int nread, int always_accept = 0);