diff options
author | Alan Modra <modra@gmail.com> | 2007-08-25 13:20:40 +0000 |
---|---|---|
committer | Alan Modra <modra@gmail.com> | 2007-08-25 13:20:40 +0000 |
commit | 80bed8e0a40b0a42a4102abf0a38d1c49e38b7bb (patch) | |
tree | d9ff82a5f2d560900520147ec2d6db2bc0a317a5 /include/elf | |
parent | 309faeb5ca258d9b5a09c584d6cdd795e2e59784 (diff) | |
download | cygnal-80bed8e0a40b0a42a4102abf0a38d1c49e38b7bb.tar.gz cygnal-80bed8e0a40b0a42a4102abf0a38d1c49e38b7bb.tar.bz2 cygnal-80bed8e0a40b0a42a4102abf0a38d1c49e38b7bb.zip |
include/elf/
* common.h (NT_SPU): Define.
bfd/
* elf.c (elfcore_grok_spu_note): New function.
(elf_parse_notes): Call it.
binutils/
* readelf.c (process_note): Recognize SPU core file notes.
Diffstat (limited to 'include/elf')
-rw-r--r-- | include/elf/ChangeLog | 4 | ||||
-rw-r--r-- | include/elf/common.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 0e07b03c7..c24893d16 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,7 @@ +2007-08-25 Ulrich Weigand <uweigand@de.ibm.com> + + * common.h (NT_SPU): Define. + 2007-08-16 H.J. Lu <hongjiu.lu@intel.com> * common.h: Revert last change. diff --git a/include/elf/common.h b/include/elf/common.h index bc9a5cf2e..5b71782fd 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -407,6 +407,10 @@ #define NT_NETBSDCORE_PROCINFO 1 /* Has a struct procinfo */ #define NT_NETBSDCORE_FIRSTMACH 32 /* start of machdep note types */ +/* Note segments for core files on SPU systems. Note name + must start with "SPU/". */ + +#define NT_SPU 1 /* Values of note segment descriptor types for object files. */ |