From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3037 invoked by alias); 30 Jul 2002 19:12:57 -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 3030 invoked from network); 30 Jul 2002 19:12:56 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (142.179.108.108) by sources.redhat.com with SMTP; 30 Jul 2002 19:12:56 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id 340F5D2CBD; Tue, 30 Jul 2002 12:12:56 -0700 (PDT) Date: Tue, 30 Jul 2002 12:18:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: [RFA] Add declaration in i386-tdep.h (for interix) Message-ID: <20020730191256.GE19161@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ikeVEW9yuYc//A+q" Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2002-07/txt/msg00600.txt.bz2 --ikeVEW9yuYc//A+q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 297 Still submitting small changes that I come across and will be needed for the interix port... 2002-07-30 Joel Brobecker * i386-tdep.h (skip_trampoline_code): Add forward declaration. Will be needed for the interix target. OK to apply? Thank you. -- Joel --ikeVEW9yuYc//A+q Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="i386-tdep.h.diff" Content-length: 635 Index: i386-tdep.h =================================================================== RCS file: /cvs/src/src/gdb/i386-tdep.h,v retrieving revision 1.10 diff -c -3 -p -r1.10 i386-tdep.h *** i386-tdep.h 4 Jul 2002 08:18:20 -0000 1.10 --- i386-tdep.h 30 Jul 2002 17:55:28 -0000 *************** struct gdbarch_tdep *** 160,165 **** --- 160,168 ---- /* Size of the largest register. */ #define I386_MAX_REGISTER_SIZE 16 + /* Functions exported from i386-tdep.c */ + extern CORE_ADDR skip_trampoline_code (CORE_ADDR pc, char *name); + /* Return the name of register REG. */ extern char const *i386_register_name (int reg); --ikeVEW9yuYc//A+q--