diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:43:06 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:31 -0700 |
commit | 0e67620a27973554ee13ce75bceddd90ac53a70d (patch) | |
tree | 18293a12125eb79512a29f29e650b134a1d0b6ea | |
parent | 88ee6f45bb74169fea3dd75110e626ece3f11401 (diff) | |
download | gdb-0e67620a27973554ee13ce75bceddd90ac53a70d.zip gdb-0e67620a27973554ee13ce75bceddd90ac53a70d.tar.gz gdb-0e67620a27973554ee13ce75bceddd90ac53a70d.tar.bz2 |
Add target_ops argument to to_get_min_fast_tracepoint_insn_len
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops)
<to_get_min_fast_tracepoint_insn_len>: Add argument.
(target_get_min_fast_tracepoint_insn_len): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_get_min_fast_tracepoint_insn_len): Add 'self'
argument.
-rw-r--r-- | gdb/ChangeLog | 9 | ||||
-rw-r--r-- | gdb/remote.c | 2 | ||||
-rw-r--r-- | gdb/target.c | 2 | ||||
-rw-r--r-- | gdb/target.h | 4 |
4 files changed, 13 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b625897..2ed00b9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,14 @@ 2014-02-19 Tom Tromey <tromey@redhat.com> + * target.h (struct target_ops) + <to_get_min_fast_tracepoint_insn_len>: Add argument. + (target_get_min_fast_tracepoint_insn_len): Add argument. + * target.c (update_current_target): Update. + * remote.c (remote_get_min_fast_tracepoint_insn_len): Add 'self' + argument. + +2014-02-19 Tom Tromey <tromey@redhat.com> + * target.h (struct target_ops) <to_get_raw_trace_data>: Add argument. (target_get_raw_trace_data): Add argument. diff --git a/gdb/remote.c b/gdb/remote.c index d5ce8c1..ca97c49 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -11083,7 +11083,7 @@ remote_traceframe_info (void) length is unknown. */ static int -remote_get_min_fast_tracepoint_insn_len (void) +remote_get_min_fast_tracepoint_insn_len (struct target_ops *self) { struct remote_state *rs = get_remote_state (); char *reply; diff --git a/gdb/target.c b/gdb/target.c index c7e6f3e..9266a03 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -902,7 +902,7 @@ update_current_target (void) (LONGEST (*) (struct target_ops *, gdb_byte *, ULONGEST, LONGEST)) tcomplain); de_fault (to_get_min_fast_tracepoint_insn_len, - (int (*) (void)) + (int (*) (struct target_ops *)) return_minus_one); de_fault (to_set_disconnected_tracing, (void (*) (int)) diff --git a/gdb/target.h b/gdb/target.h index 18bb852..98bdbaf 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -826,7 +826,7 @@ struct target_ops may be set on the target. If this operation is unsupported, return -1. If for some reason the minimum length cannot be determined, return 0. */ - int (*to_get_min_fast_tracepoint_insn_len) (void); + int (*to_get_min_fast_tracepoint_insn_len) (struct target_ops *); /* Set the target's tracing behavior in response to unexpected disconnection - set VAL to 1 to keep tracing, 0 to stop. */ @@ -1844,7 +1844,7 @@ extern char *target_fileio_read_stralloc (const char *filename); (buf), (offset), (len)) #define target_get_min_fast_tracepoint_insn_len() \ - (*current_target.to_get_min_fast_tracepoint_insn_len) () + (*current_target.to_get_min_fast_tracepoint_insn_len) (¤t_target) #define target_set_disconnected_tracing(val) \ (*current_target.to_set_disconnected_tracing) (val) |