aboutsummaryrefslogtreecommitdiff
path: root/gdb/python/py-stopevent.h
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/python/py-stopevent.h')
-rw-r--r--gdb/python/py-stopevent.h9
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 */