* nlm/Makefile.in: Add (C) after Copyright. Update the FSF
[deliverable/binutils-gdb.git] / gdb / i386gnu-nat.c
index 023fbb7d6e8650ccefa2b3ea57c012c3fe092b5b..540806d3bdf437c1b9b151c3bb5a1e1410313127 100644 (file)
@@ -1,6 +1,6 @@
 /* Low level interface to i386 running the GNU Hurd.
 
-   Copyright 1992, 1995, 1996, 1998, 2000, 2001, 2004
+   Copyright (C) 1992, 1995, 1996, 1998, 2000, 2001, 2004
    Free Software Foundation, Inc.
 
    This file is part of GDB.
@@ -17,8 +17,8 @@
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+   Foundation, Inc., 51 Franklin Street, Fifth Floor,
+   Boston, MA 02110-1301, USA.  */
 
 #include "defs.h"
 #include "inferior.h"
@@ -75,7 +75,7 @@ fetch_fpregs (struct proc *thread)
                          (thread_state_t) &state, &count);
   if (err)
     {
-      warning ("Couldn't fetch floating-point state from %s",
+      warning (_("Couldn't fetch floating-point state from %s"),
               proc_string (thread));
       return;
     }
@@ -121,7 +121,7 @@ gnu_fetch_registers (int regno)
 
   thread = inf_tid_to_thread (current_inferior, PIDGET (inferior_ptid));
   if (!thread)
-    error ("Can't fetch registers from thread %d: No such thread",
+    error (_("Can't fetch registers from thread %d: No such thread"),
           PIDGET (inferior_ptid));
 
   if (regno < I386_NUM_GREGS || regno == -1)
@@ -132,7 +132,7 @@ gnu_fetch_registers (int regno)
       state = proc_get_state (thread, 0);
       if (!state)
        {
-         warning ("Couldn't fetch registers from %s",
+         warning (_("Couldn't fetch registers from %s"),
                   proc_string (thread));
          return;
        }
@@ -179,7 +179,7 @@ store_fpregs (struct proc *thread, int regno)
                          (thread_state_t) &state, &count);
   if (err)
     {
-      warning ("Couldn't fetch floating-point state from %s",
+      warning (_("Couldn't fetch floating-point state from %s"),
               proc_string (thread));
       return;
     }
@@ -192,7 +192,7 @@ store_fpregs (struct proc *thread, int regno)
                          (thread_state_t) &state, i386_FLOAT_STATE_COUNT);
   if (err)
     {
-      warning ("Couldn't store floating-point state into %s",
+      warning (_("Couldn't store floating-point state into %s"),
               proc_string (thread));
       return;
     }
@@ -210,7 +210,7 @@ gnu_store_registers (int regno)
 
   thread = inf_tid_to_thread (current_inferior, PIDGET (inferior_ptid));
   if (!thread)
-    error ("Couldn't store registers into thread %d: No such thread",
+    error (_("Couldn't store registers into thread %d: No such thread"),
           PIDGET (inferior_ptid));
 
   if (regno < I386_NUM_GREGS || regno == -1)
@@ -227,7 +227,7 @@ gnu_store_registers (int regno)
       state = proc_get_state (thread, 1);
       if (!state)
        {
-         warning ("Couldn't store registers into %s", proc_string (thread));
+         warning (_("Couldn't store registers into %s"), proc_string (thread));
          return;
        }
 
@@ -247,14 +247,14 @@ gnu_store_registers (int regno)
                           register_size (current_gdbarch, check_regno)))
              /* Register CHECK_REGNO has changed!  Ack!  */
              {
-               warning ("Register %s changed after the thread was aborted",
+               warning (_("Register %s changed after the thread was aborted"),
                         REGISTER_NAME (check_regno));
                if (regno >= 0 && regno != check_regno)
                  /* Update GDB's copy of the register.  */
                  regcache_raw_supply (regcache, check_regno,
                                       REG_ADDR (state, check_regno));
                else
-                 warning ("... also writing this register!  Suspicious...");
+                 warning (_("... also writing this register!  Suspicious..."));
              }
        }
 
This page took 0.025727 seconds and 4 git commands to generate.