From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11537 invoked by alias); 20 Feb 2010 05:56:22 -0000 Received: (qmail 11519 invoked by uid 22791); 20 Feb 2010 05:56:22 -0000 X-SWARE-Spam-Status: No, hits=-1.7 required=5.0 tests=AWL,BAYES_00,SARE_MSGID_LONG40,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mail-pw0-f41.google.com (HELO mail-pw0-f41.google.com) (209.85.160.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 20 Feb 2010 05:56:18 +0000 Received: by pwj7 with SMTP id 7so907445pwj.0 for ; Fri, 19 Feb 2010 21:56:17 -0800 (PST) MIME-Version: 1.0 Received: by 10.143.86.8 with SMTP id o8mr1478814wfl.332.1266645377125; Fri, 19 Feb 2010 21:56:17 -0800 (PST) In-Reply-To: References: <20100205023723.11253.green@moxielogic.com> <20100205130320.3380.qmail@sourceware.org> From: Hui Zhu Date: Sat, 20 Feb 2010 05:56:00 -0000 Message-ID: Subject: Re: [Bug gdb/11253] SEGV during reverse debugging w/ record target over simulator To: sourceware-bugzilla@sourceware.org, gdb-patches ml , Anthony Green Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable 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: 2010-02/txt/msg00517.txt.bz2 Ping. On Mon, Feb 8, 2010 at 13:44, Hui Zhu wrote: > Hi Anthony, > > I make a patch for it. > > Please help me test it. > > Thanks, > Hui > > 2010-02-08 =A0Hui Zhu =A0 > > =A0 =A0 =A0 =A0* target.c (init_dummy_target): Add to_stopped_by_watchpoi= nt. > --- > =A0target.c | =A0 =A01 + > =A01 file changed, 1 insertion(+) > > --- a/target.c > +++ b/target.c > @@ -2836,6 +2836,7 @@ init_dummy_target (void) > =A0 dummy_target.to_has_stack =3D (int (*) (struct target_ops *)) return_= zero; > =A0 dummy_target.to_has_registers =3D (int (*) (struct target_ops *)) ret= urn_zero; > =A0 dummy_target.to_has_execution =3D (int (*) (struct target_ops *)) ret= urn_zero; > + =A0dummy_target.to_stopped_by_watchpoint =3D return_zero; > =A0 dummy_target.to_magic =3D OPS_MAGIC; > =A0} >