diff options
Diffstat (limited to 'gdb/inf-child.c')
-rw-r--r-- | gdb/inf-child.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/inf-child.c b/gdb/inf-child.c index 4171d1e..38311f1 100644 --- a/gdb/inf-child.c +++ b/gdb/inf-child.c @@ -33,7 +33,8 @@ for all registers. */ static void -inf_child_fetch_inferior_registers (struct regcache *regcache, int regnum) +inf_child_fetch_inferior_registers (struct target_ops *ops, + struct regcache *regcache, int regnum) { if (regnum == -1) { @@ -50,7 +51,8 @@ inf_child_fetch_inferior_registers (struct regcache *regcache, int regnum) this for all registers (including the floating point registers). */ static void -inf_child_store_inferior_registers (struct regcache *regcache, int regnum) +inf_child_store_inferior_registers (struct target_ops *ops, + struct regcache *regcache, int regnum) { } |