From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21815 invoked by alias); 7 Nov 2003 01:04:26 -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 21808 invoked from network); 7 Nov 2003 01:04:25 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 7 Nov 2003 01:04:25 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id hA714PM03896 for ; Thu, 6 Nov 2003 20:04:25 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id hA714N629306; Thu, 6 Nov 2003 20:04:23 -0500 Received: from localhost.localdomain (vpn50-2.rdu.redhat.com [172.16.50.2]) by pobox.corp.redhat.com (8.12.8/8.12.8) with ESMTP id hA714MH8018669; Thu, 6 Nov 2003 20:04:22 -0500 Received: (from kev@localhost) by localhost.localdomain (8.11.6/8.11.6) id hA714Hj07189; Thu, 6 Nov 2003 18:04:17 -0700 Date: Fri, 07 Nov 2003 01:04:00 -0000 From: Kevin Buettner Message-Id: <1031107010416.ZM7188@localhost.localdomain> In-Reply-To: Andrew Cagney "[patch/rfc] Add child_to_xfer_partial; Was: ia64 portion of libunwind patch" (Nov 6, 5:32pm) References: <3F986E31.8050201@redhat.com> <1031024175718.ZM3475@localhost.localdomain> <3F996D88.9060505@redhat.com> <1031024185625.ZM9827@localhost.localdomain> <3F9F0180.2010702@redhat.com> <20031029012833.GA11070@nevyn.them.org> <3FA043B2.6090401@redhat.com> <3FA7F97B.4090909@redhat.com> <3FAACBE3.3060104@redhat.com> To: Andrew Cagney , "J. Johnston" Subject: Re: [patch/rfc] Add child_to_xfer_partial; Was: ia64 portion of libunwind patch Cc: Daniel Jacobowitz , Kevin Buettner , Marcel Moolenaar , gdb-patches@sources.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-11/txt/msg00110.txt.bz2 On Nov 6, 5:32pm, Andrew Cagney wrote: > This adds a child_xfer_partial method to "inftarg.c". I've included a > hook vis: > > > +#if 0 > > + case TARGET_OBJECT_UNWIND_TABLE: > > +#ifndef NATIVE_XFER_UNWIND_TABLE > > +#define NATIVE_XFER_UNWIND_TABLE(OPS,OBJECT,ANNEX,WRITEBUF,READBUF,OFFSET,LEN) > > (-1) > > +#endif > > + return NATIVE_XFER_UNWIND_TABLE (ops, object, annex, writebuf, > > + readbuf, offset, len); > > +#endif > > so that, in theory, all you need do is define that in the linux specific > nm-*.h file. > > I think this will make plugging in additional xfer methods easier. How > does it look? > > Anyone else? Looks good to me. I assume it's #if 0'd because TARGET_OBJECT_UNWIND_TABLE isn't defined yet? Kevin