diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-19 08:21:20 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:39 -0700 |
commit | ee97f592f2d9edf4ae720a68893af5cbaedd1be9 (patch) | |
tree | 4600d1e3b5b372e45fbfc7b6ddfc2b0a798c8471 /gdb/target.h | |
parent | 6dc7fcf4c1e9cbea86ebd067ce226ffdffa16c08 (diff) | |
download | gdb-ee97f592f2d9edf4ae720a68893af5cbaedd1be9.zip gdb-ee97f592f2d9edf4ae720a68893af5cbaedd1be9.tar.gz gdb-ee97f592f2d9edf4ae720a68893af5cbaedd1be9.tar.bz2 |
convert to_stop_recording
2014-02-19 Tom Tromey <tromey@redhat.com>
* record.c (record_stop): Unconditionally delegate.
* target-delegates.c: Rebuild.
* target.c (target_stop_recording): Unconditionally delegate.
* target.h (struct target_ops) <to_stop_recording>: 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 bbc0ecd..1437cc4 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -1028,7 +1028,8 @@ struct target_ops TARGET_DEFAULT_NORETURN (tcomplain ()); /* Stop trace recording. */ - void (*to_stop_recording) (struct target_ops *); + void (*to_stop_recording) (struct target_ops *) + TARGET_DEFAULT_IGNORE (); /* Print information about the recording. */ void (*to_info_record) (struct target_ops *); |