* osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.

* osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
This commit is contained in:
Mark Kettenis 2002-06-09 15:11:47 +00:00
parent 0b14c2aa9b
commit 1029b7fa6a
5 changed files with 22 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-06-09 Mark Kettenis <kettenis@gnu.org>
* osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
* osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
2002-06-08 Andrew Cagney <ac131313@redhat.com>
* sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.

View File

@ -1,3 +1,8 @@
2002-06-09 Mark Kettenis <kettenis@gnu.org>
* gdbint.texinfo (Target Architecture Definition): Document
GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
2002-06-08 Andrew Cagney <ac131313@redhat.com>
* gdbint.texinfo (Releasing GDB): Fix typos in @itemize @bullet

View File

@ -2386,6 +2386,14 @@ NetBSD using the ELF executable format
@item GDB_OSABI_WINCE
Windows CE
@findex GDB_OSABI_GO32
@item GDB_OSABI_GO32
DJGPP
@findex GDB_OSABI_NETWARE
@item GDB_OSABI_NETWARE
Novell NetWare
@findex GDB_OSABI_ARM_EABI_V1
@item GDB_OSABI_ARM_EABI_V1
ARM Embedded ABI version 1

View File

@ -40,6 +40,8 @@ static const char * const gdb_osabi_names[] =
"NetBSD a.out",
"NetBSD ELF",
"Windows CE",
"DJGPP",
"NetWare",
"ARM EABI v1",
"ARM EABI v2",

View File

@ -37,6 +37,8 @@ enum gdb_osabi
GDB_OSABI_NETBSD_AOUT,
GDB_OSABI_NETBSD_ELF,
GDB_OSABI_WINCE,
GDB_OSABI_GO32,
GDB_OSABI_NETWARE,
GDB_OSABI_ARM_EABI_V1,
GDB_OSABI_ARM_EABI_V2,