diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:12:29 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:47:56 -0700 |
commit | 0bcfeddf50f6d36d429b4546d5082debf2e5e05e (patch) | |
tree | 7cb9837bf3348698cdddb6153fce0f1bbfcc84d4 /gdb/target.h | |
parent | 9249843f19916f0ba5d02749b0811765babf527a (diff) | |
download | gdb-0bcfeddf50f6d36d429b4546d5082debf2e5e05e.zip gdb-0bcfeddf50f6d36d429b4546d5082debf2e5e05e.tar.gz gdb-0bcfeddf50f6d36d429b4546d5082debf2e5e05e.tar.bz2 |
convert to_set_disconnected_tracing
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_set_disconnected_tracing.
* target.h (struct target_ops) <to_set_disconnected_tracing>: Use
TARGET_DEFAULT_IGNORE.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h index 3cdb028..91d0c34 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -893,7 +893,8 @@ 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) (struct target_ops *, int val); + void (*to_set_disconnected_tracing) (struct target_ops *, int val) + TARGET_DEFAULT_IGNORE (); void (*to_set_circular_trace_buffer) (struct target_ops *, int val); /* Set the size of trace buffer in the target. */ void (*to_set_trace_buffer_size) (struct target_ops *, LONGEST val); |