From fb9981f79b7b95e95578240bd070c2e880e4a5e7 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Tue, 29 Jun 2004 06:39:06 +0000 Subject: [PATCH] * infcmd.c (attach_command): Move call to target_terminal_inferior behind loading symbol table. --- gdb/ChangeLog | 5 +++++ gdb/infcmd.c | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d8e74d87ac..d52c6c3840 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-06-29 Corinna Vinschen + + * infcmd.c (attach_command): Move call to target_terminal_inferior + behind loading symbol table. + 2004-06-28 Andrew Cagney * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Revert 2004-06-24 diff --git a/gdb/infcmd.c b/gdb/infcmd.c index 46d57bed66..58875d3b22 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -1788,9 +1788,6 @@ attach_command (char *args, int from_tty) based on what modes we are starting it with. */ target_terminal_init (); - /* Install inferior's terminal modes. */ - target_terminal_inferior (); - /* Set up execution context to know that we should return from wait_for_inferior as soon as the target reports a stop. */ init_wait_for_inferior (); @@ -1849,6 +1846,9 @@ attach_command (char *args, int from_tty) */ target_post_attach (PIDGET (inferior_ptid)); + /* Install inferior's terminal modes. */ + target_terminal_inferior (); + normal_stop (); if (deprecated_attach_hook) -- 2.11.0