diff options
author | Christopher Faylor <me@cgf.cx> | 2003-12-08 00:21:17 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-12-08 00:21:17 +0000 |
commit | 1c5c9a6bfb3bcfa33242904880f8880802decbb2 (patch) | |
tree | 8bc70a5ea58aec494513ac2cbfc62d48af4ba2bc /winsup/cygwin/fhandler_tty.cc | |
parent | 2e008fb91f34b5a257305a1e9e42f60fb0aef81d (diff) | |
download | cygnal-1c5c9a6bfb3bcfa33242904880f8880802decbb2.tar.gz cygnal-1c5c9a6bfb3bcfa33242904880f8880802decbb2.tar.bz2 cygnal-1c5c9a6bfb3bcfa33242904880f8880802decbb2.zip |
* spawn.cc (spawn_guts): Change type back to 'int' after erroneous change
below.
Diffstat (limited to 'winsup/cygwin/fhandler_tty.cc')
-rw-r--r-- | winsup/cygwin/fhandler_tty.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index a27ee5827..c5718a380 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -1306,15 +1306,6 @@ fhandler_pty_master::ptsname () void fhandler_tty_common::set_close_on_exec (int val) { -#ifndef DEBUGGING - fhandler_base::set_close_on_exec (val); -#else - /* FIXME: This is a duplication from fhandler_base::set_close_on_exec. - It is here because we need to specify the "from_pty" stuff here or - we'll get warnings from ForceCloseHandle when debugging. */ - set_inheritance (get_io_handle (), val); - set_close_on_exec_flag (val); -#endif if (get_major () == DEV_TTYS_MAJOR && get_io_handle () == cygheap->ctty.get_io_handle ()) set_close_on_exec_flag (val); @@ -1332,6 +1323,15 @@ fhandler_tty_common::set_close_on_exec (int val) set_inheritance (input_mutex, val); set_inheritance (input_available_event, val); set_inheritance (output_handle, val); +#ifndef DEBUGGING + fhandler_base::set_close_on_exec (val); +#else + /* FIXME: This is a duplication from fhandler_base::set_close_on_exec. + It is here because we need to specify the "from_pty" stuff here or + we'll get warnings from ForceCloseHandle when debugging. */ + set_inheritance (get_io_handle (), val); + set_close_on_exec_flag (val); +#endif } } |