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.
This commit is contained in:
Tom Tromey 2013-12-17 21:36:17 -07:00
parent dd0e2830ee
commit 3c80fb48ec
4 changed files with 12 additions and 4 deletions

View File

@ -1,3 +1,10 @@
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.
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_get_bookmark>: Add argument.

View File

@ -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;

View File

@ -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 ();
}

View File

@ -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) (&current_target, ARGS, FROM_TTY)
#define target_goto_bookmark(ARG, FROM_TTY) \
(current_target.to_goto_bookmark) (ARG, FROM_TTY)
(current_target.to_goto_bookmark) (&current_target, ARG, FROM_TTY)
/* Hardware watchpoint interfaces. */