From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4085 invoked by alias); 12 Sep 2002 00:34:37 -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 4078 invoked from network); 12 Sep 2002 00:34:37 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (142.179.108.108) by sources.redhat.com with SMTP; 12 Sep 2002 00:34:37 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id 50BF7D2CC1; Wed, 11 Sep 2002 17:34:35 -0700 (PDT) Date: Wed, 11 Sep 2002 17:34:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: Re: [RFA] Add GDB_OSABI_INTERIX enum value Message-ID: <20020912003435.GD932@gnat.com> References: <20020911190645.GF1105@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline In-Reply-To: <20020911190645.GF1105@gnat.com> User-Agent: Mutt/1.4i X-SW-Source: 2002-09/txt/msg00198.txt.bz2 --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 636 On Wed, Sep 11, 2002 at 12:06:45PM -0700, Joel Brobecker wrote: > 2002-09-11 J. Brobecker > > * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for > Interix. Ooops! This change seemed harmless, but it needs another change in osabi to work. I found this problem by doing some testing on Linux (SEGV at startup). Here is the change I committed to fix my mistake: 2002-09-11 J. Brobecker * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX. Sorry about that, next time I'll rerun the testsuite, however harmless the change seems to be. -- Joel --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="osabi.c.diff" Content-length: 438 Index: osabi.c =================================================================== RCS file: /cvs/src/src/gdb/osabi.c,v retrieving revision 1.7 diff -c -3 -p -r1.7 osabi.c *** osabi.c 27 Aug 2002 22:37:06 -0000 1.7 --- osabi.c 12 Sep 2002 00:24:48 -0000 *************** static const char * const gdb_osabi_name *** 45,50 **** --- 45,51 ---- "NetWare", "Irix", "LynxOS", + "Interix", "ARM EABI v1", "ARM EABI v2", --EeQfGwPcQSOJBaQU--