* osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
authorMark Kettenis <kettenis@gnu.org>
Sun, 9 Jun 2002 15:11:47 +0000 (15:11 +0000)
committerMark Kettenis <kettenis@gnu.org>
Sun, 9 Jun 2002 15:11:47 +0000 (15:11 +0000)
* osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".

gdb/ChangeLog
gdb/doc/ChangeLog
gdb/doc/gdbint.texinfo
gdb/osabi.c
gdb/osabi.h

index 131967f..dec4058 100644 (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__.
index 2cef84e..6fe1f31 100644 (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
index 61c6e96..bfb9d97 100644 (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
index 4186cbd..0abc4a2 100644 (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",
index 23e7025..f3882e7 100644 (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,