diff options
author | Kevin Buettner <kevinb@redhat.com> | 2003-04-07 20:08:10 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2003-04-07 20:08:10 +0000 |
commit | eacddb5ec5bb429907225b9e6bd196e9fc66965e (patch) | |
tree | 4304879452fa7f02bd4c28c91854484e12285c93 /bfd | |
parent | b1bfac075c98b2f4fd628d2f37713eef4c96b26b (diff) | |
download | gdb-eacddb5ec5bb429907225b9e6bd196e9fc66965e.tar.gz |
* elfn32-mips.c (elf32_mips_grok_prstatus): Adjust core file related
constants for n32 ABI.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elfn32-mips.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1264aa384df..434e5463ba4 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2003-04-07 Kevin Buettner <kevinb@redhat.com> + + * elfn32-mips.c (elf32_mips_grok_prstatus): Adjust core file related + constants for n32 ABI. + 2003-04-06 Andrew Cagney <cagney@redhat.com> * simple.c (bfd_simple_get_relocated_section_contents): Disable diff --git a/bfd/elfn32-mips.c b/bfd/elfn32-mips.c index 9105d185bb8..ab255fa6974 100644 --- a/bfd/elfn32-mips.c +++ b/bfd/elfn32-mips.c @@ -2024,7 +2024,7 @@ elf32_mips_grok_prstatus (abfd, note) default: return FALSE; - case 256: /* Linux/MIPS */ + case 440: /* Linux/MIPS N32 */ /* pr_cursig */ elf_tdata (abfd)->core_signal = bfd_get_16 (abfd, note->descdata + 12); @@ -2033,7 +2033,7 @@ elf32_mips_grok_prstatus (abfd, note) /* pr_reg */ offset = 72; - raw_size = 180; + raw_size = 360; break; } |