From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20333 invoked by alias); 19 Feb 2014 20:29:40 -0000 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 Received: (qmail 20251 invoked by uid 89); 19 Feb 2014 20:29:39 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 19 Feb 2014 20:29:38 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s1JKTbS8016309 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 19 Feb 2014 15:29:37 -0500 Received: from brno.lan (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id s1JKTamm025004 for ; Wed, 19 Feb 2014 15:29:36 -0500 From: Pedro Alves To: gdb-patches@sourceware.org Subject: [PATCH 0/7] eliminate deprecated_xfer_memory Date: Wed, 19 Feb 2014 20:29:00 -0000 Message-Id: <1392841775-19126-1-git-send-email-palves@redhat.com> X-SW-Source: 2014-02/txt/msg00605.txt.bz2 This series converts the remaining targets that are still implementing deprecated_xfer_memory hooks to use to_xfer_partial instead, and then eliminates deprecated_xfer_memory completely. The last patch of the series is a follow up cleanup that could go in anytime actually. An --enable-targets=all build includes remote-mips.c, remote-m32r-sdi.c and bsd-uthread.c, so those got built tested. I have a djgpp cross compiler handy so I build tested go32-nat.c too. I have no way to test nto-procfs.c (nto/qnx) nor procfs.c (Solaris). I put this at: https://github.com/palves/gdb.git deprecated_xfer_memory for convenience if anyone wants to test. I plan to put this in after a while. Pedro Alves (7): remote-mips.c: Don't install a deprecated_xfer_memory method remote-m32r-sdi.c: Don't install a deprecated_xfer_memory method procfs.c: Don't install a deprecated_xfer_memory method nto-procfs.c: Don't install a deprecated_xfer_memory method go32-nat.c: Don't install a deprecated_xfer_memory method eliminate target_ops->deprecated_xfer_memory bsd-uthread.c: Don't install a to_xfer_partial method gdb/bsd-uthread.c | 16 ------- gdb/go32-nat.c | 76 ++++++++++++++++++++++--------- gdb/nto-procfs.c | 58 ++++++++++++++---------- gdb/procfs.c | 72 +++++++++++------------------ gdb/remote-m32r-sdi.c | 60 +++++++++++++++++-------- gdb/remote-mips.c | 65 +++++++++++++++++---------- gdb/target.c | 122 -------------------------------------------------- gdb/target.h | 26 ----------- 8 files changed, 199 insertions(+), 296 deletions(-) -- 1.7.11.7