diff options
author | Indu Bhagat <indu.bhagat@oracle.com> | 2023-02-02 00:49:29 -0800 |
---|---|---|
committer | Indu Bhagat <indu.bhagat@oracle.com> | 2023-02-02 00:49:29 -0800 |
commit | 53d8d3f0c19e1365fdbb78c5824fe1d7e3d13aa0 (patch) | |
tree | e52e1557f32d29d992620489873938c3613a9e3d /include | |
parent | 3e3e792a2931b973d5c9bc4fa79168dec8ab7730 (diff) | |
download | binutils-53d8d3f0c19e1365fdbb78c5824fe1d7e3d13aa0.zip binutils-53d8d3f0c19e1365fdbb78c5824fe1d7e3d13aa0.tar.gz binutils-53d8d3f0c19e1365fdbb78c5824fe1d7e3d13aa0.tar.bz2 |
bfd: use "stack trace" instead of "unwind" for SFrame
SFrame format is meant for generating stack traces only.
bfd/
* elf-bfd.h: Replace the use of "unwind" with "stack trace".
* elf-sframe.c: Likewise.
* elf64-x86-64.c: Likewise.
* elfxx-x86.c: Likewise.
include/
* elf/common.h: Likewise.
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/elf/common.h b/include/elf/common.h index bb93123..d19d6f9 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -489,7 +489,7 @@ #define PT_GNU_STACK (PT_LOOS + 0x474e551) /* Stack flags */ #define PT_GNU_RELRO (PT_LOOS + 0x474e552) /* Read-only after relocation */ #define PT_GNU_PROPERTY (PT_LOOS + 0x474e553) /* GNU property */ -#define PT_GNU_SFRAME (PT_LOOS + 0x474e554) /* SFrame unwind information */ +#define PT_GNU_SFRAME (PT_LOOS + 0x474e554) /* SFrame stack trace information */ /* OpenBSD segment types. */ #define PT_OPENBSD_RANDOMIZE (PT_LOOS + 0x5a3dbe6) /* Fill with random data. */ |