From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11277 invoked by alias); 6 Jan 2005 21:59:32 -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 10901 invoked from network); 6 Jan 2005 21:58:56 -0000 Received: from unknown (HELO sibelius.xs4all.nl) (82.92.89.47) by sourceware.org with SMTP; 6 Jan 2005 21:58:56 -0000 Received: from elgar.sibelius.xs4all.nl (elgar.sibelius.xs4all.nl [192.168.0.2]) by sibelius.xs4all.nl (8.13.0/8.13.0) with ESMTP id j06Lwqem008214; Thu, 6 Jan 2005 22:58:52 +0100 (CET) Received: from elgar.sibelius.xs4all.nl (localhost [127.0.0.1]) by elgar.sibelius.xs4all.nl (8.12.6p3/8.12.6) with ESMTP id j06Lwq0K000676; Thu, 6 Jan 2005 22:58:52 +0100 (CET) (envelope-from kettenis@elgar.sibelius.xs4all.nl) Received: (from kettenis@localhost) by elgar.sibelius.xs4all.nl (8.12.6p3/8.12.6/Submit) id j06LwqLK000673; Thu, 6 Jan 2005 22:58:52 +0100 (CET) Date: Thu, 06 Jan 2005 21:59:00 -0000 Message-Id: <200501062158.j06LwqLK000673@elgar.sibelius.xs4all.nl> From: Mark Kettenis To: kewarken@qnx.com CC: gdb-patches@sources.redhat.com In-reply-to: <41DD8028.6080104@qnx.com> (message from Kris Warkentin on Thu, 06 Jan 2005 13:15:04 -0500) Subject: Re: [COMMIT] Remove deprecated core support from QNX References: <200412241446.iBOEk4X1012019@juw15.nfra.nl> <41DD8028.6080104@qnx.com> X-SW-Source: 2005-01/txt/msg00034.txt.bz2 Date: Thu, 06 Jan 2005 13:15:04 -0500 From: Kris Warkentin Sorry about the late reply Mark, I was away for a bit over the holidays. Thanks for committing that all in. Works great. Question though. I noticed that you left off this part: > /* Register core file support. */ > set_gdbarch_regset_from_core_section > (gdbarch, i386_regset_from_core_section); I'm assuming the corefile support now just uses the normal target regset supply functions? Yeah, as soon as you set tdep->gregset_reg_offset and friends, the generic i386 code in i386-tdep.c takes care of setting regset_from_core_section automagically. Mark