From f2acbe1cfb21202beb2729561918a8b2f7bc9f00 Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Wed, 11 Aug 2004 09:00:57 +0000 Subject: [PATCH] * inflow.c (O_NOCTTY): Define to zero if not already defined. (new_tty): Use O_NOCTTY unconditionally. --- gdb/ChangeLog | 5 +++++ gdb/inflow.c | 9 ++++----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 794c78f15ce..45abe47e3a2 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-08-11 Mark Kettenis + + * inflow.c (O_NOCTTY): Define to zero if not already defined. + (new_tty): Use O_NOCTTY unconditionally. + 2004-08-10 Mark Kettenis * procfs.c (procfs_detach): Cleanup. Print process ID, not LWP diff --git a/gdb/inflow.c b/gdb/inflow.c index 9c9a59351ac..eb5c89bda57 100644 --- a/gdb/inflow.c +++ b/gdb/inflow.c @@ -42,6 +42,10 @@ #include #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); -- 2.30.2