aboutsummaryrefslogtreecommitdiff
path: root/gdb/inflow.c
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@gnu.org>2004-08-11 09:00:57 +0000
committerMark Kettenis <kettenis@gnu.org>2004-08-11 09:00:57 +0000
commitf2acbe1cfb21202beb2729561918a8b2f7bc9f00 (patch)
treea33d4cefdbb75764b147574109962a436d23bb35 /gdb/inflow.c
parentcc377e6b36d4c3239980bed893dec833a3a2793c (diff)
downloadgdb-f2acbe1cfb21202beb2729561918a8b2f7bc9f00.zip
gdb-f2acbe1cfb21202beb2729561918a8b2f7bc9f00.tar.gz
gdb-f2acbe1cfb21202beb2729561918a8b2f7bc9f00.tar.bz2
* inflow.c (O_NOCTTY): Define to zero if not already defined.
(new_tty): Use O_NOCTTY unconditionally.
Diffstat (limited to 'gdb/inflow.c')
-rw-r--r--gdb/inflow.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/gdb/inflow.c b/gdb/inflow.c
index 9c9a593..eb5c89b 100644
--- a/gdb/inflow.c
+++ b/gdb/inflow.c
@@ -42,6 +42,10 @@
#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);