* cygerrno.h: Make multi-inclusion safe.

* fhandler_termios.cc (fhandler_termios::tcsetpgrp): Deal with EINTR.
* dcrt0.cc (dll_crt0_0): Accommodate init_console_handler argument change.
* winsup.h: Ditto.
* fhandler_tty.cc (fhandler_tty_slave::open): Ditto.
* exceptions.cc (init_console_handler): Ditto.  Ignore console events if we're
not attached to a terminal.
* fhandler_tty.cc (fhandler_tty_slave::open): Ditto.
* wincap.cc: Implement has_null_console_handler_routine throughout.
* wincap.h: Ditto.
This commit is contained in:
Christopher Faylor
2005-06-30 02:52:14 +00:00
parent d573a471af
commit 5b3e1f7358
9 changed files with 87 additions and 20 deletions

View File

@ -591,7 +591,7 @@ fhandler_tty_slave::open (int flags, mode_t)
// stuff fails
termios_printf ("%d = AllocConsole (), %E", b);
if (b)
init_console_handler ();
init_console_handler (TRUE);
}
// FIXME: Do this better someday