diff options
author | John Baldwin <jhb@FreeBSD.org> | 2020-03-26 09:48:28 -0700 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2020-03-26 09:48:28 -0700 |
commit | a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1 (patch) | |
tree | 79b1d70d76c6f0470a043a5d5165621e879e9bca /include/elf | |
parent | 0826b30a9fa085ccee574465523d0560a4a01198 (diff) | |
download | gdb-a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1.zip gdb-a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1.tar.gz gdb-a879b4d5a683f8dbebae8cf98297ee4a2db2e9e1.tar.bz2 |
Support AT_BSDFLAGS on FreeBSD.
FreeBSD's kernel recently added a new ELF auxiliary vector entry
holding a mask of software features provided by the kernel. This
change fixes 'info auxv' to report the name and description for this
vector entry instead of '???'.
include/ChangeLog:
* elf/common.h (AT_FREEBSD_BSDFLAGS): Define.
gdb/ChangeLog:
* fbsd-tdep.c (fbsd_print_auxv_entry): Handle AT_FREEBSD_BSDFLAGS.
Diffstat (limited to 'include/elf')
-rw-r--r-- | include/elf/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/elf/common.h b/include/elf/common.h index 1c84ccb..6741c34 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -1251,6 +1251,7 @@ #define AT_FREEBSD_EHDRFLAGS 24 /* e_flags field from ELF header. */ #define AT_FREEBSD_HWCAP 25 /* CPU feature flags. */ #define AT_FREEBSD_HWCAP2 26 /* CPU feature flags 2. */ +#define AT_FREEBSD_BSDFLAGS 27 /* ELF BSD Flags. */ #define AT_SUN_UID 2000 /* Effective user ID. */ #define AT_SUN_RUID 2001 /* Real user ID. */ |