From 3c80fb48ecf664f8e9c37af310ca3f7c5c54faec Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 17 Dec 2013 21:36:17 -0700 Subject: [PATCH] Add target_ops argument to to_goto_bookmark 2014-02-19 Tom Tromey * target.h (struct target_ops) : 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. --- gdb/ChangeLog | 7 +++++++ gdb/record-full.c | 3 ++- gdb/target.c | 2 +- gdb/target.h | 4 ++-- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cc6a3a431c..b9edea7346 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2014-02-19 Tom Tromey + + * target.h (struct target_ops) : 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. + 2014-02-19 Tom Tromey * target.h (struct target_ops) : Add argument. diff --git a/gdb/record-full.c b/gdb/record-full.c index d51474167b..649ae5c843 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; diff --git a/gdb/target.c b/gdb/target.c index 74725f8d23..4d67bc37ff 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -3796,7 +3796,7 @@ dummy_get_bookmark (struct target_ops *self, char *ignore1, int ignore2) /* Error-catcher for target_goto_bookmark. */ static void -dummy_goto_bookmark (gdb_byte *ignore, int from_tty) +dummy_goto_bookmark (struct target_ops *self, gdb_byte *ignore, int from_tty) { tcomplain (); } diff --git a/gdb/target.h b/gdb/target.h index 732c2a9eaa..526ba521d5 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -554,7 +554,7 @@ struct target_ops /* get_bookmark support method for bookmarks */ gdb_byte * (*to_get_bookmark) (struct target_ops *, char *, int); /* goto_bookmark support method for bookmarks */ - void (*to_goto_bookmark) (gdb_byte *, int); + void (*to_goto_bookmark) (struct target_ops *, gdb_byte *, int); /* Return the thread-local address at OFFSET in the thread-local storage for the thread PTID and the shared library or executable file given by OBJFILE. If that block of @@ -1575,7 +1575,7 @@ extern char *target_thread_name (struct thread_info *); (current_target.to_get_bookmark) (¤t_target, ARGS, FROM_TTY) #define target_goto_bookmark(ARG, FROM_TTY) \ - (current_target.to_goto_bookmark) (ARG, FROM_TTY) + (current_target.to_goto_bookmark) (¤t_target, ARG, FROM_TTY) /* Hardware watchpoint interfaces. */ -- 2.34.1