]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
patch ../102427016.patch
authorDoug Evans <dje@google.com>
Thu, 10 Dec 2015 20:00:30 +0000 (12:00 -0800)
committerDoug Evans <dje@google.com>
Thu, 10 Dec 2015 20:00:30 +0000 (12:00 -0800)
README.google
gdb/infcmd.c

index 244874ee5e2c566c41830537676c74118106c804..95f505c1715d37e231452daabd974d5d7059d733 100644 (file)
@@ -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.
index aaf3d07e9734675f6b29c6b103073d6289b7a127..76ed5c294d8a675a385e18b923e89763bd1a94d0 100644 (file)
@@ -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)
     {