Add target_ops argument to to_static_tracepoint_marker_at

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

	* target.h (struct target_ops) <to_static_tracepoint_marker_at>:
	Add argument.
	(target_static_tracepoint_marker_at): Add argument.
	* target.c (update_current_target): Update.
	* remote.c (remote_static_tracepoint_marker_at): Add 'self'
	argument.
This commit is contained in:
Tom Tromey
2013-12-17 21:44:32 -07:00
parent c378d69dff
commit 61fc905df3
4 changed files with 15 additions and 4 deletions

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

@ -2892,7 +2892,7 @@ remote_threads_extra_info (struct target_ops *self, struct thread_info *tp)
static int static int
remote_static_tracepoint_marker_at (CORE_ADDR addr, remote_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR addr,
struct static_tracepoint_marker *marker) struct static_tracepoint_marker *marker)
{ {
struct remote_state *rs = get_remote_state (); struct remote_state *rs = get_remote_state ();

@ -924,7 +924,8 @@ update_current_target (void)
(void (*) (struct target_ops *)) (void (*) (struct target_ops *))
target_ignore); target_ignore);
de_fault (to_static_tracepoint_marker_at, de_fault (to_static_tracepoint_marker_at,
(int (*) (CORE_ADDR, struct static_tracepoint_marker *)) (int (*) (struct target_ops *,
CORE_ADDR, struct static_tracepoint_marker *))
return_zero); return_zero);
de_fault (to_static_tracepoint_markers_by_strid, de_fault (to_static_tracepoint_markers_by_strid,
(VEC(static_tracepoint_marker_p) * (*) (const char *)) (VEC(static_tracepoint_marker_p) * (*) (const char *))

@ -867,7 +867,7 @@ struct target_ops
/* Look for a static tracepoint marker at ADDR, and fill in MARKER /* Look for a static tracepoint marker at ADDR, and fill in MARKER
with its details. Return 1 on success, 0 on failure. */ with its details. Return 1 on success, 0 on failure. */
int (*to_static_tracepoint_marker_at) (CORE_ADDR, int (*to_static_tracepoint_marker_at) (struct target_ops *, CORE_ADDR,
struct static_tracepoint_marker *marker); struct static_tracepoint_marker *marker);
/* Return a vector of all tracepoints markers string id ID, or all /* Return a vector of all tracepoints markers string id ID, or all
@ -1868,7 +1868,8 @@ extern char *target_fileio_read_stralloc (const char *filename);
(*current_target.to_set_permissions) (&current_target) (*current_target.to_set_permissions) (&current_target)
#define target_static_tracepoint_marker_at(addr, marker) \ #define target_static_tracepoint_marker_at(addr, marker) \
(*current_target.to_static_tracepoint_marker_at) (addr, marker) (*current_target.to_static_tracepoint_marker_at) (&current_target, \
addr, marker)
#define target_static_tracepoint_markers_by_strid(marker_id) \ #define target_static_tracepoint_markers_by_strid(marker_id) \
(*current_target.to_static_tracepoint_markers_by_strid) (marker_id) (*current_target.to_static_tracepoint_markers_by_strid) (marker_id)