diff options
author | Yao Qi <yao@codesourcery.com> | 2014-03-04 17:39:10 +0800 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2014-03-06 09:39:50 +0800 |
commit | 6a5f844b29319793deb3840b20803bd3a0fa01a2 (patch) | |
tree | fb8387d5b41a2082ba09a06baf5265de4fa91d27 /gdb/ChangeLog | |
parent | 9e43f3e57d4ddf1ac042e8af35517f7fd2c776a7 (diff) | |
download | gdb-6a5f844b29319793deb3840b20803bd3a0fa01a2.zip gdb-6a5f844b29319793deb3840b20803bd3a0fa01a2.tar.gz gdb-6a5f844b29319793deb3840b20803bd3a0fa01a2.tar.bz2 |
Change the default implementation of to_traceframe_info to tcomplain
This patch is to change the default implementation of to_traceframe_info
from 'return NULL' to tcomplain, which is intended. If new target
supports tracepoint, this method should be implemented, otherwise,
an error is thrown.
gdb:
2014-03-06 Yao Qi <yao@codesourcery.com>
* target.h (struct target_ops) <to_traceframe_info>: Use
TARGET_DEFAULT_NORETURN (tcomplain ()).
* target-delegates.c: Regenerated.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b9ac372..e3911e9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2014-03-06 Yao Qi <yao@codesourcery.com> + + * target.h (struct target_ops) <to_traceframe_info>: Use + TARGET_DEFAULT_NORETURN (tcomplain ()). + * target-delegates.c: Regenerated. + 2014-03-05 Pedro Alves <palves@redhat.com> PR gdb/16575 |