* 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.
This commit is contained in:
Egor Duda
2001-03-12 20:39:40 +00:00
parent 17bd7f5a37
commit 79409dc0a2
3 changed files with 8 additions and 2 deletions

View File

@ -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);