diff options
author | Kamil Rytarowski <n54@gmx.com> | 2020-03-13 23:37:10 +0100 |
---|---|---|
committer | Kamil Rytarowski <n54@gmx.com> | 2020-03-14 00:31:16 +0100 |
commit | 06d949ec3121f4732e789db1efc53986355c9481 (patch) | |
tree | b763ed34ee3a9397ba6b1795548f29109aa71dcf /include/elf | |
parent | 9fcbd8a90a92bf303c41be816040789e1ed6cf4e (diff) | |
download | gdb-06d949ec3121f4732e789db1efc53986355c9481.zip gdb-06d949ec3121f4732e789db1efc53986355c9481.tar.gz gdb-06d949ec3121f4732e789db1efc53986355c9481.tar.bz2 |
Implement NT_NETBSDCORE_LWPSTATUS (NetBSD-Core)
bfd/ChangeLog:
* elf.c (elfcore_grok_netbsd_note): Add support for
NT_NETBSDCORE_LWPSTATUS notes.
binutils/ChangeLog:
* readelf.c (get_netbsd_elfcore_note_type): Add support for
NT_NETBSDCORE_LWPSTATUS notes.
include/ChangeLog:
* elf/common.h (NT_NETBSDCORE_LWPSTATUS): New define.
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 755c791..1c84ccb 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -687,6 +687,7 @@ #define NT_NETBSDCORE_PROCINFO 1 /* Has a struct procinfo */ #define NT_NETBSDCORE_AUXV 2 /* Has auxv data */ +#define NT_NETBSDCORE_LWPSTATUS 24 /* Has LWPSTATUS data */ #define NT_NETBSDCORE_FIRSTMACH 32 /* start of machdep note types */ |