diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:34:36 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:55 -0700 |
commit | 1eab8a48bf928ab7337833c785ec1316edbdbc8a (patch) | |
tree | 9905d4d243662da8ae2aa4fb66c9a99dbf65c534 /gdb/target.h | |
parent | 503a628d9bced852eb0d5da7eac40fa560c26b17 (diff) | |
download | binutils-1eab8a48bf928ab7337833c785ec1316edbdbc8a.zip binutils-1eab8a48bf928ab7337833c785ec1316edbdbc8a.tar.gz binutils-1eab8a48bf928ab7337833c785ec1316edbdbc8a.tar.bz2 |
Add target_ops argument to to_stop
2014-02-19 Tom Tromey <tromey@redhat.com>
* windows-nat.c (windows_stop): Add 'self' argument.
* target.h (struct target_ops) <to_stop>: Add argument.
* target.c (target_stop): Add argument.
(debug_to_stop): Add argument.
(update_current_target): Update.
* remote.c (remote_stop): Add 'self' argument.
* remote-sim.c (gdbsim_stop): Add 'self' argument.
(gdbsim_cntrl_c): Update.
* remote-m32r-sdi.c (m32r_stop): Add 'self' argument.
* procfs.c (procfs_stop): Add 'self' argument.
* nto-procfs.c (procfs_stop): Add 'self' argument.
* monitor.c (monitor_stop): Add 'self' argument.
(monitor_open): Update.
* linux-nat.c (linux_nat_stop): Add argument.
* inf-ptrace.c (inf_ptrace_stop): Add 'self' argument.
* gnu-nat.c (gnu_stop): Add 'self' argument.
* darwin-nat.c (darwin_stop): Add 'self' argument.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h index d225802..3c2bf80 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -524,7 +524,7 @@ struct target_ops char *(*to_pid_to_str) (struct target_ops *, ptid_t); char *(*to_extra_thread_info) (struct target_ops *, struct thread_info *); char *(*to_thread_name) (struct target_ops *, struct thread_info *); - void (*to_stop) (ptid_t); + void (*to_stop) (struct target_ops *, ptid_t); void (*to_rcmd) (char *command, struct ui_file *output); char *(*to_pid_to_exec_file) (int pid); void (*to_log_command) (const char *); |