diff options
author | Szabolcs Nagy <nsz@port70.net> | 2018-11-10 20:37:46 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-03-13 12:31:13 -0400 |
commit | 5640bc5bd59a0348a9792b4a2c0418c72b0abc16 (patch) | |
tree | f663d8aca21673b2c8144693fc5742a1bc390f47 /include | |
parent | 3e52f99308d51fbd4da268fc8b95edc35081d1f5 (diff) | |
download | musl-5640bc5bd59a0348a9792b4a2c0418c72b0abc16.tar.gz musl-5640bc5bd59a0348a9792b4a2c0418c72b0abc16.tar.bz2 musl-5640bc5bd59a0348a9792b4a2c0418c72b0abc16.tar.xz musl-5640bc5bd59a0348a9792b4a2c0418c72b0abc16.zip |
elf.h: add new mips core dump note values from linux v4.19
NT_MIPS_FP_MODE is new in linux commit
1ae22a0e35636efceab83728ba30b013df761592
NT_MIPS_DSP is new in linux commit
44109c60176ae73924a42a6bef64ef151aba9095
Diffstat (limited to 'include')
-rw-r--r-- | include/elf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/elf.h b/include/elf.h index 54f41a10..d2a1cc33 100644 --- a/include/elf.h +++ b/include/elf.h @@ -686,6 +686,8 @@ typedef struct { #define NT_METAG_TLS 0x502 #define NT_ARC_V2 0x600 #define NT_VMCOREDD 0x700 +#define NT_MIPS_DSP 0x800 +#define NT_MIPS_FP_MODE 0x801 #define NT_VERSION 1 |