diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:41:02 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:21 -0700 |
commit | e2d1aae3726343725f2381a7fdca8647b6086584 (patch) | |
tree | 0b8e317de8cede7a883f2e070d3e62fe2864975c /gdb/remote.c | |
parent | 583f9a86a41ec94276dd56da8844a40add57f734 (diff) | |
download | gdb-e2d1aae3726343725f2381a7fdca8647b6086584.zip gdb-e2d1aae3726343725f2381a7fdca8647b6086584.tar.gz gdb-e2d1aae3726343725f2381a7fdca8647b6086584.tar.bz2 |
Add target_ops argument to to_trace_start
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_trace_start>: Add argument.
(target_trace_start): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_trace_start): Add 'self' argument.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 255545b..4afe062 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -10711,7 +10711,7 @@ Too many sections for read-only sections definition packet.")); } static void -remote_trace_start (void) +remote_trace_start (struct target_ops *self) { putpkt ("QTStart"); remote_get_noisy_reply (&target_buf, &target_buf_size); |