diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-04 03:07:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-04 03:07:32 +0000 |
commit | ec880cc71ab5aa7000ba88e74d7882c3dd4f4a0e (patch) | |
tree | d7b1dfb78a01bfdd9646f3f0e95cca9373b43efc | |
parent | b7a65b865823ad57479a4dd211c27bebee5a5a47 (diff) | |
download | glibc-ec880cc71ab5aa7000ba88e74d7882c3dd4f4a0e.tar glibc-ec880cc71ab5aa7000ba88e74d7882c3dd4f4a0e.tar.gz glibc-ec880cc71ab5aa7000ba88e74d7882c3dd4f4a0e.tar.bz2 glibc-ec880cc71ab5aa7000ba88e74d7882c3dd4f4a0e.zip |
Update.
* elf/elf.h (SHT_SUNW_move): Define.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | elf/elf.h | 9 |
2 files changed, 7 insertions, 4 deletions
@@ -1,5 +1,7 @@ 2000-06-03 Ulrich Drepper <drepper@redhat.com> + * elf/elf.h (SHT_SUNW_move): Define. + * elf/elf.h: Add more Solaris compatiblity definitions. 2000-06-03 Andreas Jaeger <aj@suse.de> @@ -290,7 +290,8 @@ typedef struct #define SHT_PREINIT_ARRAY 16 /* Array of pre-constructors */ #define SHT_NUM 17 /* Number of defined types. */ #define SHT_LOOS 0x60000000 /* Start OS-specific */ -#define SHT_LOSUNW 0x6ffffffb /* Sun-specific low bound. */ +#define SHT_LOSUNW 0x6ffffffa /* Sun-specific low bound. */ +#define SHT_SUNW_move 0x6ffffffa #define SHT_SUNW_COMDAT 0x6ffffffb #define SHT_SUNW_syminfo 0x6ffffffc #define SHT_GNU_verdef 0x6ffffffd /* Version definition section. */ @@ -919,9 +920,9 @@ typedef struct #define ELF32_M_SIZE(info) ((unsigned char) (info)) #define ELF32_M_INFO(sym, size) (((sym) << 8) + (unsigned char) (size)) -#define ELF64_M_SYM(info) ELF32_M_SYM(info) -#define ELF64_M_SIZE(info) ELF32_M_SIZE(info) -#define ELF64_M_INFO(info) ELF32_M_INFO(info) +#define ELF64_M_SYM(info) ELF32_M_SYM (info) +#define ELF64_M_SIZE(info) ELF32_M_SIZE (info) +#define ELF64_M_INFO(sym, size) ELF32_M_INFO (sym, size) /* Motorola 68k specific definitions. */ |