diff options
| author | Joseph Koshy <jkoshy@FreeBSD.org> | 2026-03-13 10:56:17 +0000 |
|---|---|---|
| committer | Joseph Koshy <jkoshy@FreeBSD.org> | 2026-03-13 11:06:03 +0000 |
| commit | b5f564fc5cdb56d6a24e31ca077c5f1f088a597d (patch) | |
| tree | 39cd5cbab07b0ba63ebbd43503f57cb10f6da6a7 | |
| parent | 9a9f93bcf1aa0059d759b2f3ea6faeb2760a11bd (diff) | |
sys/elf_common.h: Add the gABI spelling for a dynamic tag value.
| -rw-r--r-- | sys/sys/elf_common.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/sys/elf_common.h b/sys/sys/elf_common.h index b1ddbaaf39ab..8c21d886c6a5 100644 --- a/sys/sys/elf_common.h +++ b/sys/sys/elf_common.h @@ -640,7 +640,10 @@ typedef struct { pre-initialization functions. */ #define DT_PREINIT_ARRAYSZ 33 /* Size in bytes of the array of pre-initialization functions. */ -#define DT_MAXPOSTAGS 34 /* number of positive tags */ +#define DT_SYMTAB_SHNDX 34 /* Address of the SHT_SYMTAB_SHNDX section + associated with the symbol table referenced + by the DT_SYMTAB element. */ +#define DT_MAXPOSTAGS 34 /* (obsolete) number of positive tags */ #define DT_RELRSZ 35 /* Total size of ElfNN_Relr relocations. */ #define DT_RELR 36 /* Address of ElfNN_Relr relocations. */ #define DT_RELRENT 37 /* Size of each ElfNN_Relr relocation. */ |
