diff options
author | Tom Tromey <tromey@adacore.com> | 2023-11-03 13:23:41 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2023-12-11 10:51:32 -0700 |
commit | e187e7c9696fbf66cf25d5fb8113bc3bc06b9e8b (patch) | |
tree | db8bf8c6a14650905a6831cb35de0fea3e504510 /gdb/python/py-stopevent.h | |
parent | f2e2493b1f892bd377b772307c5ad37bdcda4e12 (diff) | |
download | binutils-e187e7c9696fbf66cf25d5fb8113bc3bc06b9e8b.zip binutils-e187e7c9696fbf66cf25d5fb8113bc3bc06b9e8b.tar.gz binutils-e187e7c9696fbf66cf25d5fb8113bc3bc06b9e8b.tar.bz2 |
Emit stop reason details in Python stop events
This changes Python stop events to carry a "details" dictionary, that
holds any relevant information about the stop. The details are
constructed using more or less the same procedure as is done for MI.
Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=13587
Reviewed-By: Eli Zaretskii <eliz@gnu.org>
Diffstat (limited to 'gdb/python/py-stopevent.h')
-rw-r--r-- | gdb/python/py-stopevent.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gdb/python/py-stopevent.h b/gdb/python/py-stopevent.h index 649112f..92282c9 100644 --- a/gdb/python/py-stopevent.h +++ b/gdb/python/py-stopevent.h @@ -22,14 +22,17 @@ #include "py-event.h" -extern gdbpy_ref<> create_stop_event_object (PyTypeObject *py_type); +extern gdbpy_ref<> create_stop_event_object (PyTypeObject *py_type, + const gdbpy_ref<> &dict); extern int emit_stop_event (struct bpstat *bs, enum gdb_signal stop_signal); -extern gdbpy_ref<> create_breakpoint_event_object (PyObject *breakpoint_list, +extern gdbpy_ref<> create_breakpoint_event_object (const gdbpy_ref<> &dict, + PyObject *breakpoint_list, PyObject *first_bp); -extern gdbpy_ref<> create_signal_event_object (enum gdb_signal stop_signal); +extern gdbpy_ref<> create_signal_event_object (const gdbpy_ref<> &dict, + enum gdb_signal stop_signal); #endif /* PYTHON_PY_STOPEVENT_H */ |