diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2000-04-14 19:14:15 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2000-04-14 19:14:15 +0000 |
commit | 16c088d03772776d9305b5e3f447f6600727c4b8 (patch) | |
tree | 66f75d22676315269e947fc017cf72b2cff016cb /include | |
parent | 8dc7983f05b3019c13a7d3ff26567faf078e9e30 (diff) | |
download | gdb-16c088d03772776d9305b5e3f447f6600727c4b8.zip gdb-16c088d03772776d9305b5e3f447f6600727c4b8.tar.gz gdb-16c088d03772776d9305b5e3f447f6600727c4b8.tar.bz2 |
2000-04-14 H.J. Lu <hjl@gnu.org>
* common.h (ELFOSABI_NETBSD): Defined.
(ELFOSABI_HURD): Likewise.
(ELFOSABI_SOLARIS): Likewise.
(ELFOSABI_MONTEREY): Likewise.
(ELFOSABI_IRIX): Likewise.
(ELFOSABI_FREEBSD): Likewise.
(ELFOSABI_TRUE64): Likewise.
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/ChangeLog | 10 | ||||
-rw-r--r-- | include/elf/common.h | 7 |
2 files changed, 17 insertions, 0 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index fd94a04..baf469c 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,13 @@ +2000-04-14 H.J. Lu <hjl@gnu.org> + + * common.h (ELFOSABI_NETBSD): Defined. + (ELFOSABI_HURD): Likewise. + (ELFOSABI_SOLARIS): Likewise. + (ELFOSABI_MONTEREY): Likewise. + (ELFOSABI_IRIX): Likewise. + (ELFOSABI_FREEBSD): Likewise. + (ELFOSABI_TRUE64): Likewise. + 2000-04-07 Nick Clifton <nickc@cygnus.com> * arm-oabi.h: Delete. diff --git a/include/elf/common.h b/include/elf/common.h index fe8c216..45844cd 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -60,7 +60,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #define EI_OSABI 7 /* Operating System/ABI indication */ #define ELFOSABI_SYSV 0 /* UNIX System V ABI */ #define ELFOSABI_HPUX 1 /* HP-UX operating system */ +#define ELFOSABI_NETBSD 2 /* NetBSD */ #define ELFOSABI_LINUX 3 /* GNU/Linux */ +#define ELFOSABI_HURD 4 /* GNU/Hurd */ +#define ELFOSABI_SOLARIS 6 /* Solaris */ +#define ELFOSABI_MONTEREY 7 /* Monterey */ +#define ELFOSABI_IRIX 8 /* IRIX */ +#define ELFOSABI_FREEBSD 9 /* FreeBSD */ +#define ELFOSABI_TRUE64 10 /* TRUE64 UNIX */ #define ELFOSABI_STANDALONE 255 /* Standalone (embedded) application */ #define ELFOSABI_ARM 97 /* ARM */ |