summaryrefslogtreecommitdiff
path: root/gdb/python/py-bpevent.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2012-08-15 14:22:02 +0000
committerTom Tromey <tromey@redhat.com>2012-08-15 14:22:02 +0000
commitdb6573d6646f950b5a758fd68d180de8ae1e8981 (patch)
tree5c1765409a97237e924cd9f3a0dbaff697f631de /gdb/python/py-bpevent.c
parenta036ba48efc7145d0cd2de136be0443b65f672d2 (diff)
downloadbinutils-gdb-db6573d6646f950b5a758fd68d180de8ae1e8981.tar.gz
PR python/14387:
* python/py-bpevent.c (create_breakpoint_event_object): Update comment. * python/py-event.c (evpy_add_attribute): Update comment. * python/py-exitedevent.c (create_exited_event_object): Fix reference counting and error handling. * python/py-newobjfileevent.c (create_new_objfile_event_object): Fix reference counting. * python/py-signalevent.c (create_signal_event_object): Fix reference counting and error handling. * python/py-stopevent.c (emit_stop_event): Fix reference counting. * python/py-threadevent.c (get_event_thread): Return a borrowed reference. * python/py-type.c (convert_field): Fix reference counting.
Diffstat (limited to 'gdb/python/py-bpevent.c')
-rw-r--r--gdb/python/py-bpevent.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/python/py-bpevent.c b/gdb/python/py-bpevent.c
index 138c39f0b2b..8e4afe47e21 100644
--- a/gdb/python/py-bpevent.c
+++ b/gdb/python/py-bpevent.c
@@ -21,7 +21,8 @@
static PyTypeObject breakpoint_event_object_type;
-/* Create and initialize a BreakpointEvent object. */
+/* Create and initialize a BreakpointEvent object. This acquires new
+ references to BREAKPOINT_LIST and FIRST_BP. */
PyObject *
create_breakpoint_event_object (PyObject *breakpoint_list, PyObject *first_bp)