mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
Add target_ops argument to to_set_disconnected_tracing
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_set_disconnected_tracing>: Add argument. (target_set_disconnected_tracing): Add argument. * target.c (update_current_target): Update. * remote.c (remote_set_disconnected_tracing): Add 'self' argument.
This commit is contained in:
@ -830,7 +830,7 @@ struct target_ops
|
||||
|
||||
/* Set the target's tracing behavior in response to unexpected
|
||||
disconnection - set VAL to 1 to keep tracing, 0 to stop. */
|
||||
void (*to_set_disconnected_tracing) (int val);
|
||||
void (*to_set_disconnected_tracing) (struct target_ops *, int val);
|
||||
void (*to_set_circular_trace_buffer) (int val);
|
||||
/* Set the size of trace buffer in the target. */
|
||||
void (*to_set_trace_buffer_size) (LONGEST val);
|
||||
@ -1847,7 +1847,7 @@ extern char *target_fileio_read_stralloc (const char *filename);
|
||||
(*current_target.to_get_min_fast_tracepoint_insn_len) (¤t_target)
|
||||
|
||||
#define target_set_disconnected_tracing(val) \
|
||||
(*current_target.to_set_disconnected_tracing) (val)
|
||||
(*current_target.to_set_disconnected_tracing) (¤t_target, val)
|
||||
|
||||
#define target_set_circular_trace_buffer(val) \
|
||||
(*current_target.to_set_circular_trace_buffer) (val)
|
||||
|
Reference in New Issue
Block a user