aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2015-12-10 12:00:30 -0800
committerDoug Evans <dje@google.com>2015-12-10 12:00:30 -0800
commit9f70033d635ff2b0fdf87b6bebc5be5e18afbcd4 (patch)
treeb01b18878b6330bdeef9c190f23055bc2c3d05a0
parentf31f92104eb8e2f7a2db987880cbeb3c5504926d (diff)
downloadfsf-binutils-gdb-9f70033d635ff2b0fdf87b6bebc5be5e18afbcd4.zip
fsf-binutils-gdb-9f70033d635ff2b0fdf87b6bebc5be5e18afbcd4.tar.gz
fsf-binutils-gdb-9f70033d635ff2b0fdf87b6bebc5be5e18afbcd4.tar.bz2
patch ../102427016.patch
-rw-r--r--README.google8
-rw-r--r--gdb/infcmd.c4
2 files changed, 11 insertions, 1 deletions
diff --git a/README.google b/README.google
index 244874e..95f505c 100644
--- a/README.google
+++ b/README.google
@@ -121,3 +121,11 @@ they are an ongoing maintenance burden.
+ uninterruptible.
+ * psymtab.c (psymtab_to_symtab): Ditto.
+ * python/python.c (check_quit_flag): Ditto.
+--- README.google 2015-09-05 16:20:56.000000000 -0700
++++ README.google 2015-09-05 16:22:58.000000000 -0700
++
++2015-09-05 Doug Evans <dje@google.com>
++
++ Ref# 2180247
++ * infcmd.c (attach_command_post_wait): Pass zero to
++ post_create_inferior, same as run_command_1.
diff --git a/gdb/infcmd.c b/gdb/infcmd.c
index aaf3d07..76ed5c2 100644
--- a/gdb/infcmd.c
+++ b/gdb/infcmd.c
@@ -2505,7 +2505,9 @@ attach_command_post_wait (char *args, int from_tty, int async_exec)
/* Take any necessary post-attaching actions for this platform. */
target_post_attach (ptid_get_pid (inferior_ptid));
- post_create_inferior (&current_target, from_tty);
+ /* GOOGLE LOCAL: run_command_1 passes zero for from_tty here.
+ Do the same for attach. Ref# 2180247 */
+ post_create_inferior (&current_target, 0);
if (async_exec)
{