Remove now obsolete signame.c and signame.h; functionality is handled by
[deliverable/binutils-gdb.git] / gdb / mach386-xdep.c
index 358bb17fcf5676c5e28b7ae8729a8bd76e0e20f6..10777857c6ccf1726889b68d2a0b28b3cbb1b286 100644 (file)
@@ -3,30 +3,27 @@
 
 This file is part of GDB.
 
-GDB is free software; you can redistribute it and/or modify
+This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-the Free Software Foundation; either version 1, or (at your option)
-any later version.
+the Free Software Foundation; either version 2 of the License, or
+(at your option) any later version.
 
-GDB is distributed in the hope that it will be useful,
+This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
-along with GDB; see the file COPYING.  If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+along with this program; if not, write to the Free Software
+Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 
-#if defined (GDB_TARGET_IS_MACH386)
-
-#include <stdio.h>
 #include "defs.h"
-#include "param.h"
 #include "frame.h"
 #include "inferior.h"
-#include "signame.h"
 #include "gdbcore.h"
 
+#if defined (GDB_TARGET_IS_MACH386)
+
 #include <sys/param.h>
 #include <sys/dir.h>
 #include <sys/user.h>
@@ -40,9 +37,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include <sys/file.h>
 #include <sys/stat.h>
 #include <sys/core.h>
+
 \f
 void
-fetch_inferior_registers ()
+fetch_inferior_registers (regno)
+     int regno;                /* Original value discarded */
 {
   struct regs inferior_registers;
   struct fp_state inferior_fp_registers;
@@ -66,6 +65,7 @@ fetch_inferior_registers ()
    If REGNO is -1, do this for all registers.
    Otherwise, REGNO specifies which register (so we can save time).  */
 
+void
 store_inferior_registers (regno)
      int regno;
 {
@@ -103,15 +103,34 @@ store_inferior_registers (regno)
   ptrace (PTRACE_SETFPREGS, inferior_pid, &inferior_fp_registers);
 }
 
-/* Machine-dependent code which would otherwise be in core.c */
+#else /* Not mach386 target.  */
+
+/* These functions shouldn't be called when we're cross-debugging.  */
+
+/* ARGSUSED */
+void
+fetch_inferior_registers (regno)
+     int regno;
+{
+}
+
+/* ARGSUSED */
+void
+store_inferior_registers (regno)
+     int regno;
+{
+}
+
+#endif /* Not mach386 target.  */
+
 /* Work with core files, for GDB. */
 
-\f
 void
-fetch_core_registers (core_reg_sect, core_reg_size, which)
+fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
      char *core_reg_sect;
      unsigned core_reg_size;
      int which;
+     unsigned int reg_addr;    /* Unused in this version */
 {
   int val;
   extern char registers[];
@@ -123,10 +142,12 @@ fetch_core_registers (core_reg_sect, core_reg_size, which)
     break;
 
   case 2:
+#ifdef FP0_REGNUM
     bcopy (core_reg_sect,
           &registers[REGISTER_BYTE (FP0_REGNUM)],
           core_reg_size);              /* FIXME, probably bogus */
-#if 0
+#endif
+#ifdef FPC_REGNUM
     bcopy (&corestr.c_fpu.f_fpstatus.f_ctrl,
           &registers[REGISTER_BYTE (FPC_REGNUM)],
           sizeof corestr.c_fpu.f_fpstatus -
@@ -135,28 +156,3 @@ fetch_core_registers (core_reg_sect, core_reg_size, which)
     break;
   }
 }
-#else /* Not mach386 target.  */
-
-/* These functions shouldn't be called when we're cross-debugging.  */
-
-void
-fetch_inferior_registers ()
-{
-}
-
-/* ARGSUSED */
-store_inferior_registers (regno)
-     int regno;
-{
-}
-
-/* ARGSUSED */
-void
-fetch_core_registers (core_reg_sect, core_reg_size, which)
-     char *core_reg_sect;
-     unsigned core_reg_size;
-     int which;
-{
-}
-
-#endif /* Not mach386 target.  */
This page took 0.02532 seconds and 4 git commands to generate.