From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7985 invoked by alias); 23 Jun 2011 10:35:02 -0000 Received: (qmail 7918 invoked by uid 22791); 23 Jun 2011 10:35:01 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 23 Jun 2011 10:34:47 +0000 Received: (qmail 9189 invoked from network); 23 Jun 2011 10:34:46 -0000 Received: from unknown (HELO ?192.168.0.101?) (yao@127.0.0.2) by mail.codesourcery.com with ESMTPA; 23 Jun 2011 10:34:46 -0000 Message-ID: <4E0316C1.10500@codesourcery.com> Date: Thu, 23 Jun 2011 10:35:00 -0000 From: Yao Qi User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.17) Gecko/20110424 Lightning/1.0b2 Thunderbird/3.1.10 MIME-Version: 1.0 To: Tom Tromey CC: gdb-patches@sourceware.org Subject: Re: [rfc] Call init_wait_for_inferior before get_offsets References: <4DFED6B3.2050700@codesourcery.com> In-Reply-To: Content-Type: multipart/mixed; boundary="------------070506000609070406020206" X-IsSubscribed: yes 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: 2011-06/txt/msg00343.txt.bz2 This is a multi-part message in MIME format. --------------070506000609070406020206 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Content-length: 769 On 06/22/2011 11:07 PM, Tom Tromey wrote: >>>>>> "Yao" == Yao Qi writes: > > Yao> 2011-06-20 Yao Qi > Yao> * infrun.c (start_remote): Move call init_wait_for_inferior to ... > Yao> * remote.c (remote_start_remote): ... here. > > I don't know anything about this code, but I did notice that > start_remote is also called from monitor.c. So it seems like this > either needs some justification or another change. monitor.c should be changed as well. Sorry for missing this chunk of change in patch. Here is a new one. Regression tested on x86_64-unknown-linux with board file native-gdbserver.exp. Some new FAILs/PASSes appears in gdb.mi/mi-nsmoribund.exp, but it is not caused this patch, IMO. -- Yao (齐尧) --------------070506000609070406020206 Content-Type: text/x-patch; name="0003-move-init_wait_for_inferior-forward.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0003-move-init_wait_for_inferior-forward.patch" Content-length: 1369 gdb/ * infrun.c (start_remote): Move call init_wait_for_inferior to ... * remote.c (remote_start_remote): ... here. * monitor.c (monitor_open): ... here. --- gdb/infrun.c | 1 - gdb/monitor.c | 2 ++ gdb/remote.c | 2 ++ 3 files changed, 4 insertions(+), 1 deletions(-) diff --git a/gdb/infrun.c b/gdb/infrun.c index 67a74cc..3d39080 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -2128,7 +2128,6 @@ start_remote (int from_tty) { struct inferior *inferior; - init_wait_for_inferior (); inferior = current_inferior (); inferior->stop_soon = STOP_QUIETLY_REMOTE; diff --git a/gdb/monitor.c b/gdb/monitor.c index 95e6a63..4775011 100644 --- a/gdb/monitor.c +++ b/gdb/monitor.c @@ -838,6 +838,8 @@ monitor_open (char *args, struct monitor_ops *mon_ops, int from_tty) monitor_printf (current_monitor->line_term); + init_wait_for_inferior (); + start_remote (from_tty); } diff --git a/gdb/remote.c b/gdb/remote.c index 50e671d..559039d 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -3422,6 +3422,8 @@ remote_start_remote (struct ui_out *uiout, void *opaque) /* Always add the main thread. */ add_thread_silent (inferior_ptid); + init_wait_for_inferior (); + get_offsets (); /* Get text, data & bss offsets. */ /* If we could not find a description using qXfer, and we know -- 1.7.0.4 --------------070506000609070406020206--