Use ".word 0x0012 # Entry mask: r1 r2 >" instead of just "Entry mask: < r1 ... >"
[deliverable/binutils-gdb.git] / gdb / hppa-hpux-nat.c
index 72a837db200f9c8d5c16b8535da6c3675842f775..5338ae24985f5f8156cbd110810e3ba312c963d6 100644 (file)
@@ -109,7 +109,7 @@ hppa_hpux_fetch_register (int regnum)
     lwpid_t lwp = ptid_get_lwp (inferior_ptid);
 
     if (ttrace (TT_LWP_RUREGS, pid, lwp, addr, size, (uintptr_t)buf) == -1)
-      error ("Couldn't read register %s (#%d): %s",
+      error (_("Couldn't read register %s (#%d): %s"),
             REGISTER_NAME (regnum), regnum, safe_strerror (errno));
   }
 #else
@@ -122,7 +122,7 @@ hppa_hpux_fetch_register (int regnum)
        errno = 0;
        buf[i] = ptrace (PT_RUREGS, pid, (PTRACE_TYPE_ARG3) addr, 0, 0);
        if (errno != 0)
-         error ("Couldn't read register %s (#%d): %s",
+         error (_("Couldn't read register %s (#%d): %s"),
                 REGISTER_NAME (regnum), regnum, safe_strerror (errno));
 
        addr += sizeof (PTRACE_TYPE_RET);
@@ -186,7 +186,7 @@ hppa_hpux_store_register (int regnum)
     lwpid_t lwp = ptid_get_lwp (inferior_ptid);
 
     if (ttrace (TT_LWP_WUREGS, pid, lwp, addr, size, (uintptr_t)buf) == -1)
-      error ("Couldn't write register %s (#%d): %s",
+      error (_("Couldn't write register %s (#%d): %s"),
             REGISTER_NAME (regnum), regnum, safe_strerror (errno));
   }
 #else
@@ -199,7 +199,7 @@ hppa_hpux_store_register (int regnum)
        errno = 0;
        ptrace (PT_WUREGS, pid, (PTRACE_TYPE_ARG3) addr, buf[i], 0);
        if (errno != 0)
-         error ("Couldn't write register %s (#%d): %s",
+         error (_("Couldn't write register %s (#%d): %s"),
                 REGISTER_NAME (regnum), regnum, safe_strerror (errno));
 
        addr += sizeof (PTRACE_TYPE_RET);
@@ -225,8 +225,9 @@ static int
 hppa_hpux_child_can_run (void)
 {
   /* This variable is controlled by modules that layer their own
-     process structure atop that provided here.  hpux-thread.c does
-     this because of the HP-UX user-mode level thread model.  */
+     process structure atop that provided here.  The code in
+     hpux-thread.c does this to support the HP-UX user-mode DCE
+     threads.  */
   return !child_suppress_run;
 }
 \f
This page took 0.026395 seconds and 4 git commands to generate.