* inflow.c (terminal_ours_1): Don't print warning on failure to
[binutils-gdb.git] / gdb / inflow.c
index 772425fac27b4800b431abdd21f2d4e62ea256b6..dd55a020c0817753605a64d6ed7b146df522d1c8 100644 (file)
@@ -325,16 +325,19 @@ terminal_ours_1 (output_only)
        {
 #ifdef HAVE_TERMIOS
          result = tcsetpgrp (0, our_process_group);
+#if 0
+         /* This fails on Ultrix with EINVAL if you run the testsuite
+            in the background with nohup, and then log out.  GDB never
+            used to check for an error here, so perhaps there are other
+            such situations as well.  */
          if (result == -1)
            fprintf (stderr, "[tcsetpgrp failed in terminal_ours: %s]\n",
                     strerror (errno));
 #endif
+#endif /* termios */
 
 #ifdef HAVE_SGTTY
          result = ioctl (0, TIOCSPGRP, our_process_group);
-         if (result == -1)
-           fprintf (stderr, "[TIOCSPGRP failed in terminal_ours: %s]\n",
-                    strerror (errno));
 #endif
        }