Add target_ops argument to to_supports_enable_disable_tracepoint

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

	* target.h (struct target_ops)
	<to_supports_enable_disable_tracepoint>: Add argument.
	(target_supports_enable_disable_tracepoint): Add argument.
	* target.c (update_current_target): Update.
	* remote.c (remote_supports_enable_disable_tracepoint): Add 'self'
	argument.
This commit is contained in:
Tom Tromey 2013-12-17 21:37:19 -07:00
parent 86ce266821
commit 7d178d6aa5
4 changed files with 13 additions and 4 deletions

View File

@ -1,3 +1,12 @@
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops)
<to_supports_enable_disable_tracepoint>: Add argument.
(target_supports_enable_disable_tracepoint): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_supports_enable_disable_tracepoint): Add 'self'
argument.
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_supports_multi_process>: Add

View File

@ -10290,7 +10290,7 @@ remote_supports_install_in_trace (void)
}
static int
remote_supports_enable_disable_tracepoint (void)
remote_supports_enable_disable_tracepoint (struct target_ops *self)
{
struct remote_state *rs = get_remote_state ();

View File

@ -843,7 +843,7 @@ update_current_target (void)
(int (*) (struct target_ops *))
return_zero);
de_fault (to_supports_enable_disable_tracepoint,
(int (*) (void))
(int (*) (struct target_ops *))
return_zero);
de_fault (to_supports_string_tracing,
(int (*) (void))

View File

@ -676,7 +676,7 @@ struct target_ops
/* Does this target support enabling and disabling tracepoints while a trace
experiment is running? */
int (*to_supports_enable_disable_tracepoint) (void);
int (*to_supports_enable_disable_tracepoint) (struct target_ops *);
/* Does this target support disabling address space randomization? */
int (*to_supports_disable_randomization) (void);
@ -1114,7 +1114,7 @@ int target_supports_disable_randomization (void);
while a trace experiment is running. */
#define target_supports_enable_disable_tracepoint() \
(*current_target.to_supports_enable_disable_tracepoint) ()
(*current_target.to_supports_enable_disable_tracepoint) (&current_target)
#define target_supports_string_tracing() \
(*current_target.to_supports_string_tracing) ()