diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:52:02 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:17 -0700 |
commit | f6fb29258bb410c212c7bcbc48fb1f715bfd3839 (patch) | |
tree | 29f6cbcf6f96ad1f808d22a7234e107025d99b67 /gdb/target.h | |
parent | e8a6c6ace9d2cc7fa94f8adb81aba5181f77442c (diff) | |
download | gdb-f6fb29258bb410c212c7bcbc48fb1f715bfd3839.zip gdb-f6fb29258bb410c212c7bcbc48fb1f715bfd3839.tar.gz gdb-f6fb29258bb410c212c7bcbc48fb1f715bfd3839.tar.bz2 |
convert to_flash_done
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (target_flash_done): Unconditionally delegate.
* target.h (struct target_ops) <to_flash_done>: Use
TARGET_DEFAULT_NORETURN.
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 17e3ed2..cb0bed2 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -683,7 +683,8 @@ struct target_ops all flash memory should be available for writing and the result of reading from areas written by 'to_flash_write' should be equal to what was written. */ - void (*to_flash_done) (struct target_ops *); + void (*to_flash_done) (struct target_ops *) + TARGET_DEFAULT_NORETURN (tcomplain ()); /* Describe the architecture-specific features of this target. Returns the description found, or NULL if no description |