2004-09-02 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gdb / hpux-thread.c
index 6136421217dbda3df20d75dc6112111807c13fd4..5664314225c7541c2476b9d5afafcb537d83f33f 100644 (file)
@@ -291,15 +291,15 @@ hpux_thread_fetch_registers (int regno)
 
          if (regno == FLAGS_REGNUM)
            /* Flags must be 0 to avoid bogus value for SS_INSYSCALL */
-           memset (buf, '\000', REGISTER_RAW_SIZE (regno));
+           memset (buf, '\000', register_size (current_gdbarch, regno));
          else if (regno == SP_REGNUM)
            store_unsigned_integer (buf, sizeof sp, sp);
          else if (regno == PC_REGNUM)
-           read_memory (sp - 20, buf, REGISTER_RAW_SIZE (regno));
+           read_memory (sp - 20, buf, register_size (current_gdbarch, regno));
          else
-           read_memory (sp + regmap[regno], buf, REGISTER_RAW_SIZE (regno));
+           read_memory (sp + regmap[regno], buf, register_size (current_gdbarch, regno));
 
-         supply_register (regno, buf);
+         regcache_raw_supply (current_regcache, regno, buf);
        }
     }
 
@@ -357,19 +357,19 @@ hpux_thread_store_registers (int regno)
            {
              write_memory ((CORE_ADDR) & tcb_ptr->static_ctx.sp,
                            &deprecated_registers[DEPRECATED_REGISTER_BYTE (regno)],
-                           REGISTER_RAW_SIZE (regno));
+                           register_size (current_gdbarch, regno));
              tcb_ptr->static_ctx.sp = (cma__t_hppa_regs *)
                (extract_unsigned_integer (&deprecated_registers[DEPRECATED_REGISTER_BYTE (regno)],
-                                          REGISTER_RAW_SIZE (regno)) + 160);
+                                          register_size (current_gdbarch, regno)) + 160);
            }
          else if (regno == PC_REGNUM)
            write_memory (sp - 20,
                          &deprecated_registers[DEPRECATED_REGISTER_BYTE (regno)],
-                         REGISTER_RAW_SIZE (regno));
+                         register_size (current_gdbarch, regno));
          else
            write_memory (sp + regmap[regno],
                          &deprecated_registers[DEPRECATED_REGISTER_BYTE (regno)],
-                         REGISTER_RAW_SIZE (regno));
+                         register_size (current_gdbarch, regno));
        }
     }
 
@@ -431,9 +431,10 @@ hpux_thread_notice_signals (ptid_t ptid)
 /* Fork an inferior process, and start debugging it with /proc.  */
 
 static void
-hpux_thread_create_inferior (char *exec_file, char *allargs, char **env)
+hpux_thread_create_inferior (char *exec_file, char *allargs, char **env,
+                            int from_tty)
 {
-  child_ops.to_create_inferior (exec_file, allargs, env);
+  child_ops.to_create_inferior (exec_file, allargs, env, from_tty);
 
   if (hpux_thread_active)
     {
@@ -581,6 +582,6 @@ _initialize_hpux_thread (void)
 
   child_suppress_run = 1;
   /* Hook into new_objfile notification. */
-  target_new_objfile_chain = target_new_objfile_hook;
-  target_new_objfile_hook  = hpux_thread_new_objfile;
+  target_new_objfile_chain = deprecated_target_new_objfile_hook;
+  deprecated_target_new_objfile_hook  = hpux_thread_new_objfile;
 }
This page took 0.025585 seconds and 4 git commands to generate.