Multiple Ada task-specific breakpoints at the same address.
[deliverable/binutils-gdb.git] / gdb / core-regset.c
index 1e539bd74120e5392ba2815658bc3e839013b002..21ea88917f7976a37bdd6a25b324fd223f5c225a 100644 (file)
@@ -1,7 +1,6 @@
 /* Machine independent GDB support for core files on systems using "regsets".
 
-   Copyright (C) 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2003, 2007
-   Free Software Foundation, Inc.
+   Copyright (C) 1993-2014 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -36,7 +35,7 @@
 
 #include <fcntl.h>
 #include <errno.h>
-#include "gdb_string.h"
+#include <string.h>
 #include <time.h>
 #ifdef HAVE_SYS_PROCFS_H
 #include <sys/procfs.h>
@@ -59,7 +58,9 @@
 
 static void
 fetch_core_registers (struct regcache *regcache,
-                     char *core_reg_sect, unsigned core_reg_size, int which,
+                     char *core_reg_sect,
+                     unsigned core_reg_size,
+                     int which,
                      CORE_ADDR reg_addr)
 {
   gdb_gregset_t gregset;
@@ -86,7 +87,8 @@ fetch_core_registers (struct regcache *regcache,
        {
          memcpy (&fpregset, core_reg_sect, sizeof (fpregset));
          if (gdbarch_fp0_regnum (get_regcache_arch (regcache)) >= 0)
-           supply_fpregset (regcache, (const gdb_fpregset_t *) fpregset_p);
+           supply_fpregset (regcache,
+                            (const gdb_fpregset_t *) fpregset_p);
        }
       break;
 
This page took 0.033446 seconds and 4 git commands to generate.