From: Doug Evans Date: Thu, 10 Dec 2015 20:00:30 +0000 (-0800) Subject: patch ../102427016.patch X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f70033d635ff2b0fdf87b6bebc5be5e18afbcd4;p=thirdparty%2Fbinutils-gdb.git patch ../102427016.patch --- diff --git a/README.google b/README.google index 244874ee5e2..95f505c1715 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 ++ ++ 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 aaf3d07e973..76ed5c294d8 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 (¤t_target, from_tty); + /* GOOGLE LOCAL: run_command_1 passes zero for from_tty here. + Do the same for attach. Ref# 2180247 */ + post_create_inferior (¤t_target, 0); if (async_exec) {