* inferior.h (call_ptrace): Replace PTRACE_ARG3_TYPE with
[deliverable/binutils-gdb.git] / gdb / inflow.c
index f2c306c856fbf988b9dc02fc576dbfcfe9932c15..eb5c89bda577ebd35f58d56df06ead5a35e2ef5a 100644 (file)
 #include <sys/ioctl.h>
 #endif
 
+#ifndef O_NOCTTY
+#define O_NOCTTY 0
+#endif
+
 #if defined (SIGIO) && defined (FASYNC) && defined (FD_SET) && defined (F_SETOWN)
 static void handle_sigio (int);
 #endif
@@ -537,12 +541,7 @@ new_tty (void)
 #endif
 
   /* Now open the specified new terminal.  */
-
-#ifdef USE_O_NOCTTY
   tty = open (inferior_thisrun_terminal, O_RDWR | O_NOCTTY);
-#else
-  tty = open (inferior_thisrun_terminal, O_RDWR);
-#endif
   if (tty == -1)
     {
       print_sys_errmsg (inferior_thisrun_terminal, errno);
@@ -597,6 +596,7 @@ kill_command (char *arg, int from_tty)
       else
        print_stack_frame (get_selected_frame (), 1, SRC_AND_LOC);
     }
+  bfd_cache_close_all ();
 }
 \f
 /* Call set_sigint_trap when you need to pass a signal on to an attached
This page took 0.035778 seconds and 4 git commands to generate.