diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:36:17 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:01 -0700 |
commit | 3c80fb48ecf664f8e9c37af310ca3f7c5c54faec (patch) | |
tree | d933b5afc5f48f8a622c6c39befd0fef03563df5 /gdb/record-full.c | |
parent | dd0e2830ee1e66c4bac079bacffc081a041cb5a8 (diff) | |
download | binutils-gdb-3c80fb48ecf664f8e9c37af310ca3f7c5c54faec.tar.gz |
Add target_ops argument to to_goto_bookmark
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_goto_bookmark>: Add argument.
(target_goto_bookmark): Add argument.
* target.c (dummy_goto_bookmark): Add 'self' argument.
* record-full.c (record_full_goto_bookmark): Add 'self' argument.
Diffstat (limited to 'gdb/record-full.c')
-rw-r--r-- | gdb/record-full.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/record-full.c b/gdb/record-full.c index d51474167ba..649ae5c843b 100644 --- a/gdb/record-full.c +++ b/gdb/record-full.c @@ -1724,7 +1724,8 @@ record_full_get_bookmark (struct target_ops *self, char *args, int from_tty) /* "to_goto_bookmark" method for process record and prec over core. */ static void -record_full_goto_bookmark (gdb_byte *raw_bookmark, int from_tty) +record_full_goto_bookmark (struct target_ops *self, + gdb_byte *raw_bookmark, int from_tty) { char *bookmark = (char *) raw_bookmark; |