From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16303 invoked by alias); 20 Oct 2009 15:05:34 -0000 Received: (qmail 16294 invoked by uid 22791); 20 Oct 2009 15:05:33 -0000 X-SWARE-Spam-Status: No, hits=-2.2 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from mtagate5.uk.ibm.com (HELO mtagate5.uk.ibm.com) (195.212.29.138) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 20 Oct 2009 15:05:28 +0000 Received: from d06nrmr1407.portsmouth.uk.ibm.com (d06nrmr1407.portsmouth.uk.ibm.com [9.149.38.185]) by mtagate5.uk.ibm.com (8.14.3/8.13.8) with ESMTP id n9KF4eP7481960 for ; Tue, 20 Oct 2009 15:04:45 GMT Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by d06nrmr1407.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id n9KF4UMm1794224 for ; Tue, 20 Oct 2009 16:04:30 +0100 Received: from d06av02.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id n9KF4UIt016296 for ; Tue, 20 Oct 2009 16:04:30 +0100 Received: from leonard.localnet (dyn-9-152-224-33.boeblingen.de.ibm.com [9.152.224.33]) by d06av02.portsmouth.uk.ibm.com (8.12.11.20060308/8.12.11) with ESMTP id n9KF4Nnk015902 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 20 Oct 2009 16:04:30 +0100 Message-Id: <200910201504.n9KF4Nnk015902@d06av02.portsmouth.uk.ibm.com> From: Ken Werner Subject: Re: [commit] multi-executable support To: gdb-patches@sourceware.org, Pedro Alves Date: Tue, 20 Oct 2009 15:05:00 -0000 References: <200910191106.28905.pedro@codesourcery.com> User-Agent: KNode/4.3.2 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="nextPart3318964.BkIkxTC2qQ" Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-10/txt/msg00466.txt.bz2 --nextPart3318964.BkIkxTC2qQ Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit Content-length: 410 Pedro Alves wrote: > On Tuesday 13 October 2009 14:40:47, Pedro Alves wrote: >> ... I'll aim at applying this at the end of the week, say. > > Here's the patch that I just committed. I noticed the gdb/go32-nat.c and gdb/remote-sim.c are calling inferior_appeared_silent which is not declared by the inferior.h header. It looks like this is a typo. The attached patch calls inferior_appeared instead. -ken --nextPart3318964.BkIkxTC2qQ Content-Type: text/x-patch; name="inferior_appeared.patch" Content-Transfer-Encoding: 8Bit Content-Disposition: attachment; filename="inferior_appeared.patch" Content-length: 1188 Index: src/gdb/go32-nat.c =================================================================== RCS file: /cvs/src/src/gdb/go32-nat.c,v retrieving revision 1.78 diff -u -r1.78 go32-nat.c --- src/gdb/go32-nat.c 19 Oct 2009 09:51:41 -0000 1.78 +++ src/gdb/go32-nat.c 20 Oct 2009 07:26:33 -0000 @@ -716,7 +716,7 @@ inferior_ptid = pid_to_ptid (SOME_PID); inf = current_inferior (); - inferior_appeared_silent (inf, SOME_PID); + inferior_appeared (inf, SOME_PID); push_target (&go32_ops); Index: src/gdb/remote-sim.c =================================================================== RCS file: /cvs/src/src/gdb/remote-sim.c,v retrieving revision 1.91 diff -u -r1.91 remote-sim.c --- src/gdb/remote-sim.c 19 Oct 2009 09:51:41 -0000 1.91 +++ src/gdb/remote-sim.c 20 Oct 2009 07:26:33 -0000 @@ -471,7 +471,7 @@ sim_create_inferior (gdbsim_desc, exec_bfd, argv, env); inferior_ptid = remote_sim_ptid; - inferior_appeared_silent (current_inferior (), ptid_get_pid (inferior_ptid)); + inferior_appeared (current_inferior (), ptid_get_pid (inferior_ptid)); add_thread_silent (inferior_ptid); insert_breakpoints (); /* Needed to get correct instruction in cache */ --nextPart3318964.BkIkxTC2qQ--