diff options
author | Tom Tromey <tom@tromey.com> | 2017-04-23 11:07:26 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-03-26 21:57:11 -0600 |
commit | 63283d4a2983eaefd5d0860ddffcf946f0fe92db (patch) | |
tree | a8106e982eb26dbdfa3764f2db6568420f58ddce /gdb/ChangeLog | |
parent | 978d6c756fcb0332ddf12e19305dd0e53b98a93d (diff) | |
download | gdb-63283d4a2983eaefd5d0860ddffcf946f0fe92db.zip gdb-63283d4a2983eaefd5d0860ddffcf946f0fe92db.tar.gz gdb-63283d4a2983eaefd5d0860ddffcf946f0fe92db.tar.bz2 |
Remove EXT_LANG_BT_COMPLETED
While looking at the frame filter code, I noticed that
EXT_LANG_BT_COMPLETED is not really needed. Semantically there is no
difference between the "completed" and "ok" results. So, this patch
removes this constant.
gdb/ChangeLog
2018-03-26 Tom Tromey <tom@tromey.com>
* python/py-framefilter.c (py_print_frame): Return
EXT_LANG_BT_OK.
(gdbpy_apply_frame_filter): Update comment.
* extension.h (enum ext_lang_bt_status) <EXT_LANG_BT_COMPLETED>:
Remove.
<EXT_LANG_BT_NO_FILTERS>: Change value.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8f80593..ed5d5be 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,14 @@ 2018-03-26 Tom Tromey <tom@tromey.com> + * python/py-framefilter.c (py_print_frame): Return + EXT_LANG_BT_OK. + (gdbpy_apply_frame_filter): Update comment. + * extension.h (enum ext_lang_bt_status) <EXT_LANG_BT_COMPLETED>: + Remove. + <EXT_LANG_BT_NO_FILTERS>: Change value. + +2018-03-26 Tom Tromey <tom@tromey.com> + PR backtrace/15582: * stack.c (backtrace_command): Parse "hide" argument. * python/py-framefilter.c (py_print_frame): Handle PRINT_HIDE. |