Add target_ops argument to to_enable_tracepoint

2014-02-19  Tom Tromey  <tromey@redhat.com>

	* target.h (struct target_ops) <to_enable_tracepoint>: Add
	argument.
	(target_enable_tracepoint): Add argument.
	* target.c (update_current_target): Update.
	* remote.c (remote_enable_tracepoint): Add 'self' argument.
This commit is contained in:
Tom Tromey 2013-12-17 21:40:25 -07:00
parent 559d2b81f0
commit 46670d57e3
4 changed files with 14 additions and 4 deletions

View File

@ -1,3 +1,11 @@
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_enable_tracepoint>: Add
argument.
(target_enable_tracepoint): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_enable_tracepoint): Add 'self' argument.
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_download_trace_state_variable>:

View File

@ -10625,7 +10625,8 @@ remote_download_trace_state_variable (struct target_ops *self,
}
static void
remote_enable_tracepoint (struct bp_location *location)
remote_enable_tracepoint (struct target_ops *self,
struct bp_location *location)
{
struct remote_state *rs = get_remote_state ();
char addr_buf[40];

View File

@ -861,7 +861,7 @@ update_current_target (void)
(void (*) (struct target_ops *, struct trace_state_variable *))
tcomplain);
de_fault (to_enable_tracepoint,
(void (*) (struct bp_location *))
(void (*) (struct target_ops *, struct bp_location *))
tcomplain);
de_fault (to_disable_tracepoint,
(void (*) (struct bp_location *))

View File

@ -771,7 +771,8 @@ struct target_ops
struct trace_state_variable *tsv);
/* Enable a tracepoint on the target. */
void (*to_enable_tracepoint) (struct bp_location *location);
void (*to_enable_tracepoint) (struct target_ops *,
struct bp_location *location);
/* Disable a tracepoint on the target. */
void (*to_disable_tracepoint) (struct bp_location *location);
@ -1795,7 +1796,7 @@ extern char *target_fileio_read_stralloc (const char *filename);
(*current_target.to_download_trace_state_variable) (&current_target, tsv)
#define target_enable_tracepoint(loc) \
(*current_target.to_enable_tracepoint) (loc)
(*current_target.to_enable_tracepoint) (&current_target, loc)
#define target_disable_tracepoint(loc) \
(*current_target.to_disable_tracepoint) (loc)