aboutsummaryrefslogtreecommitdiff
path: root/gdb/annotate.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/annotate.c')
-rw-r--r--gdb/annotate.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/annotate.c b/gdb/annotate.c
index 3d42aec..8c81373 100644
--- a/gdb/annotate.c
+++ b/gdb/annotate.c
@@ -627,8 +627,8 @@ void _initialize_annotate ();
void
_initialize_annotate ()
{
- gdb::observers::breakpoint_created.attach (breakpoint_changed);
- gdb::observers::breakpoint_deleted.attach (breakpoint_changed);
- gdb::observers::breakpoint_modified.attach (breakpoint_changed);
- gdb::observers::thread_exit.attach (annotate_thread_exited);
+ gdb::observers::breakpoint_created.attach (breakpoint_changed, "annotate");
+ gdb::observers::breakpoint_deleted.attach (breakpoint_changed, "annotate");
+ gdb::observers::breakpoint_modified.attach (breakpoint_changed, "annotate");
+ gdb::observers::thread_exit.attach (annotate_thread_exited, "annotate");
}