From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21021 invoked by alias); 18 Feb 2004 17:20:06 -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 21003 invoked from network); 18 Feb 2004 17:20:03 -0000 Received: from unknown (HELO walton.kettenis.dyndns.org) (213.93.115.144) by sources.redhat.com with SMTP; 18 Feb 2004 17:20:03 -0000 Received: from elgar.kettenis.dyndns.org (elgar.kettenis.dyndns.org [192.168.0.2]) by walton.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i1IHIBeg000306; Wed, 18 Feb 2004 18:18:11 +0100 (CET) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: from elgar.kettenis.dyndns.org (localhost [127.0.0.1]) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6) with ESMTP id i1IHIBgF024226; Wed, 18 Feb 2004 18:18:11 +0100 (CET) (envelope-from kettenis@elgar.kettenis.dyndns.org) Received: (from kettenis@localhost) by elgar.kettenis.dyndns.org (8.12.6p3/8.12.6/Submit) id i1IHIBoR024223; Wed, 18 Feb 2004 18:18:11 +0100 (CET) Date: Wed, 18 Feb 2004 17:20:00 -0000 Message-Id: <200402181718.i1IHIBoR024223@elgar.kettenis.dyndns.org> From: Mark Kettenis To: weigand@i1.informatik.uni-erlangen.de CC: gdb-patches@sources.redhat.com In-reply-to: <200402181644.RAA19455@faui1d.informatik.uni-erlangen.de> (message from Ulrich Weigand on Wed, 18 Feb 2004 17:44:07 +0100 (CET)) Subject: Re: [PATCH] Watchpoint enhancement for S/390 References: <200402181644.RAA19455@faui1d.informatik.uni-erlangen.de> X-SW-Source: 2004-02/txt/msg00521.txt.bz2 From: Ulrich Weigand Date: Wed, 18 Feb 2004 17:44:07 +0100 (CET) Hello, this patch improves hardware watchpoint handling on s390 a bit: by default, gdb only allows hw watchpoints on regions of size less than the word size; on s390 we have no such restriction, so we can allow arbitrary regions. Tested on s390-ibm-linux and s390x-ibm-linux. (I hope this is small enough so that no specific copyright assignment is required ...) Sure, please check this in. ChangeLog: * config/s390/nm-linux.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT): Define. Mark