diff options
author | Phil Muldoon <pmuldoon@redhat.com> | 2017-12-07 16:47:33 +0000 |
---|---|---|
committer | Phil Muldoon <pmuldoon@redhat.com> | 2017-12-07 16:47:33 +0000 |
commit | 824cc835aa9a4d585d955db4ab2a5dd4c17cc22c (patch) | |
tree | 8f0ee6f88956328aea665e4016ea7ae09274c6bd /gdb/ChangeLog | |
parent | 9c226a8689db8bced43b94f551e118551219ce54 (diff) | |
download | binutils-gdb-824cc835aa9a4d585d955db4ab2a5dd4c17cc22c.tar.gz |
Implement explicit locations for Python breakpoints.
This introduces several new keywords to the bppy_init constructor.
The spec parameter is now optional but mutually exclusive to the
explicit keywords source, label, function and line.
gdb/ChangeLog
2017-12-07 Phil Muldoon <pmuldoon@redhat.com>
* python/py-breakpoint.c (bppy_init): Use string_to_event_location
over basic location code. Implement explicit location keywords.
(bppy_init_validate_args): New function.
* NEWS: Document Python explicit breakpoint locations.
doc/ChangeLog
2017-12-07 Phil Muldoon <pmuldoon@redhat.com>
* python.texi (Breakpoints In Python): Add text relating
to allowed explicit locations and keywords in gdb.Breakpoints.
testsuite/ChangeLog
2017-12-07 Phil Muldoon <pmuldoon@redhat.com>
* gdb.python/py-breakpoint.exp (test_bkpt_explicit_loc): Add new
tests for explicit locations.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4d42cf92347..9ba02541617 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2017-12-07 Phil Muldoon <pmuldoon@redhat.com> + + * python/py-breakpoint.c (bppy_init): Use string_to_event_location + over basic location code. Implement explicit location keywords. + (bppy_init_validate_args): New function. + * NEWS: Document Python explicit breakpoint locations. + 2017-12-07 Joel Brobecker <brobecker@adacore.com> * MAINTAINERS: Restore target entries for m68hc11-elf, |