* elfn32-mips.c (elf32_mips_grok_prstatus): Adjust core file related
authorKevin Buettner <kevinb@redhat.com>
Mon, 7 Apr 2003 20:08:10 +0000 (20:08 +0000)
committerKevin Buettner <kevinb@redhat.com>
Mon, 7 Apr 2003 20:08:10 +0000 (20:08 +0000)
constants for n32 ABI.

bfd/ChangeLog
bfd/elfn32-mips.c

index 1264aa384dfbaed69e42baba345069a19efd35c7..434e5463ba4a0304373a8462437d6f9e4c1e2836 100644 (file)
@@ -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
index 9105d185bb856541ba4bdfc5e8afdcc0a00f53e1..ab255fa697472f150e2065c695c412fd8e855571 100644 (file)
@@ -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;
     }