diff options
author | Mihails Strasuns <mihails.strasuns@intel.com> | 2020-12-16 20:36:15 +0100 |
---|---|---|
committer | Mihails Strasuns <mihails.strasuns@intel.com> | 2021-01-26 13:22:35 +0100 |
commit | 4cb1265b3f906cbfd092715b61bb81a8f6179a49 (patch) | |
tree | d86a19ecb73873301fdb36515c7015020c67ae0c /bfd/elf.c | |
parent | c3ffb8f340f567949f24c3bab62259f0e593637f (diff) | |
download | gdb-4cb1265b3f906cbfd092715b61bb81a8f6179a49.zip gdb-4cb1265b3f906cbfd092715b61bb81a8f6179a49.tar.gz gdb-4cb1265b3f906cbfd092715b61bb81a8f6179a49.tar.bz2 |
bfd: add elfcore_write_file_note
Adds a trivial wrapper over elfcore_write_note, primarily to be more
consistent with other ELF note helper functions and highlight NT_FILE as
one of notes handled by gdb.
bfd/ChangeLog:
2020-12-17 Mihails Strasuns <mihails.strasuns@intel.com>
* bfd-elf.h (elfcore_write_file_note): New function.
* elf.c (elfcore_write_file_note): New function.
gdb/ChangeLog:
2020-12-17 Mihails Strasuns <mihails.strasuns@intel.com>
* linux-tdep.c (linux_make_mappings_corefile_notes): Start using
elfcore_write_file_note.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -12038,6 +12038,14 @@ elfcore_write_register_note (bfd *abfd, return NULL; } +char * +elfcore_write_file_note (bfd *obfd, char *note_data, int *note_size, + const void *buf, int bufsiz) +{ + return elfcore_write_note (obfd, note_data, note_size, + "CORE", NT_FILE, buf, bufsiz); +} + static bfd_boolean elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset, size_t align) |