From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26832 invoked by alias); 28 May 2003 16:02:52 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 26713 invoked from network); 28 May 2003 16:02:47 -0000 Received: from unknown (HELO cygnus.equallogic.com) (65.170.102.10) by sources.redhat.com with SMTP; 28 May 2003 16:02:47 -0000 Received: from cygnus.equallogic.com (localhost.localdomain [127.0.0.1]) by cygnus.equallogic.com (8.11.6/8.11.6) with ESMTP id h4SG2lr18008 for ; Wed, 28 May 2003 12:02:47 -0400 Received: from deneb.dev.equallogic.com (deneb.dev.equallogic.com [172.16.1.99]) by cygnus.equallogic.com (8.11.6/8.11.6) with ESMTP id h4SG2lu18002 for ; Wed, 28 May 2003 12:02:47 -0400 Received: from pkoning.dev.equallogic.com.equallogic.com (localhost.localdomain [127.0.0.1]) by deneb.dev.equallogic.com (8.11.6/8.11.6) with ESMTP id h4SG2k206576 for ; Wed, 28 May 2003 12:02:46 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16084.56742.583740.635283@pkoning.dev.equallogic.com> Date: Wed, 28 May 2003 16:02:00 -0000 From: Paul Koning To: gdb-patches@sources.redhat.com Subject: Re: proposed PATCH: make watchpoints work correctly References: <16084.56661.295275.544414@pkoning.dev.equallogic.com> X-SW-Source: 2003-05/txt/msg00507.txt.bz2 Missed the changelog entry for this patch: 2003-05-28 Paul Koning * breakpoint.c: (free_valchain) New function. (insert_breakpoints, delete_breakpoint) Use free_valchain. (remove_breakpoint) Do not remove the valchain. (bpstat_stop_status) If not stopped by watchpoint, skip watchpoints when generating stop status list. * infrun.c: (handle_inferior_event) Make stepped_after_stopped_by_watchpoint a global variable. * remote.c: (remote_stopped_data_address) Return watch data address rather than zero if stepped_after_stopped_by_watchpoint is set. paul