aboutsummaryrefslogtreecommitdiff
path: root/gdb/infrun.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r--gdb/infrun.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c
index cf91370..f451be4 100644
--- a/gdb/infrun.c
+++ b/gdb/infrun.c
@@ -3194,7 +3194,7 @@ start_remote (int from_tty)
/* Now that the inferior has stopped, do any bookkeeping like
loading shared libraries. We want to do this before normal_stop,
so that the displayed frame is up to date. */
- post_create_inferior (&current_target, from_tty);
+ post_create_inferior (current_target, from_tty);
normal_stop ();
}
@@ -5462,7 +5462,7 @@ handle_signal_stop (struct execution_control_state *ecs)
fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
- if (target_stopped_data_address (&current_target, &addr))
+ if (target_stopped_data_address (current_target, &addr))
fprintf_unfiltered (gdb_stdlog,
"infrun: stopped data address = %s\n",
paddress (gdbarch, addr));
@@ -8563,7 +8563,7 @@ siginfo_value_read (struct value *v)
validate_siginfo_access ();
transferred =
- target_read (&current_target, TARGET_OBJECT_SIGNAL_INFO,
+ target_read (current_target, TARGET_OBJECT_SIGNAL_INFO,
NULL,
value_contents_all_raw (v),
value_offset (v),
@@ -8583,7 +8583,7 @@ siginfo_value_write (struct value *v, struct value *fromval)
validate_siginfo_access ();
- transferred = target_write (&current_target,
+ transferred = target_write (current_target,
TARGET_OBJECT_SIGNAL_INFO,
NULL,
value_contents_all_raw (fromval),
@@ -8662,7 +8662,7 @@ save_infcall_suspend_state (void)
siginfo_data = (gdb_byte *) xmalloc (len);
back_to = make_cleanup (xfree, siginfo_data);
- if (target_read (&current_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
+ if (target_read (current_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
siginfo_data, 0, len) == len)
discard_cleanups (back_to);
else
@@ -8712,7 +8712,7 @@ restore_infcall_suspend_state (struct infcall_suspend_state *inf_state)
struct type *type = gdbarch_get_siginfo_type (gdbarch);
/* Errors ignored. */
- target_write (&current_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
+ target_write (current_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
inf_state->siginfo_data, 0, TYPE_LENGTH (type));
}