From: Fernando Nasser Date: Fri, 2 Oct 1998 22:57:12 +0000 (+0000) Subject: Fri Oct 2 18:52:20 1998 Fernando Nasser X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2d24a02138173b871323ce27638f420cce2344f2;p=binutils-gdb.git Fri Oct 2 18:52:20 1998 Fernando Nasser * sol-thread.c: Fixed prototypes and calls to supply_fpregset and fill_fpregset PR 17053 --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3a134377d80..b44beb37c22 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Fri Oct 2 18:52:20 1998 Fernando Nasser + + * sol-thread.c: Fixed prototypes and calls to supply_fpregset and + fill_fpregset + 1998-10-02 Keith Seitz * remote.c (remote_interrupt): Rewrite to use remote_stop. diff --git a/gdb/sol-thread.c b/gdb/sol-thread.c index 3479aab2efa..587434f4bf5 100644 --- a/gdb/sol-thread.c +++ b/gdb/sol-thread.c @@ -91,8 +91,8 @@ extern char *procfs_pid_to_str PARAMS ((int pid)); extern void supply_gregset PARAMS ((const prgregset_t)); extern void fill_gregset PARAMS ((prgregset_t, int)); -extern void supply_fpregset PARAMS ((const prfpregset_t)); -extern void fill_fpregset PARAMS ((prfpregset_t, int)); +extern void supply_fpregset PARAMS ((const prfpregset_t *)); +extern void fill_fpregset PARAMS ((prfpregset_t *, int)); /* This struct is defined by us, but mainly used for the proc_service interface. We don't have much use for it, except as a handy place to get a real pid @@ -653,7 +653,7 @@ sol_thread_fetch_registers (regno) registers array. */ supply_gregset (gregset); - supply_fpregset (fpregset); + supply_fpregset (&fpregset); #if 0 /* thread_db doesn't seem to handle this right */ @@ -739,7 +739,7 @@ sol_thread_store_registers (regno) } fill_gregset (regset, regno); - fill_fpregset (fpregset, regno); + fill_fpregset (&fpregset, regno); val = p_td_thr_setgregs (&thandle, regset); if (val != TD_OK) @@ -1215,7 +1215,7 @@ ps_lgetfpregs (const struct ps_prochandle *ph, lwpid_t lwpid, procfs_ops.to_fetch_registers (-1); else orig_core_ops.to_fetch_registers (-1); - fill_fpregset (*fpregset, -1); + fill_fpregset (fpregset, -1); do_cleanups (old_chain); @@ -1234,7 +1234,7 @@ ps_lsetfpregs (const struct ps_prochandle *ph, lwpid_t lwpid, inferior_pid = BUILD_LWP (lwpid, PIDGET (inferior_pid)); - supply_fpregset (*fpregset); + supply_fpregset (fpregset); if (target_has_execution) procfs_ops.to_store_registers (-1); else