aboutsummaryrefslogtreecommitdiff
path: root/gdb/interps.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2023-04-21 09:45:30 -0400
committerSimon Marchi <simon.marchi@efficios.com>2023-05-30 15:07:26 -0400
commit19081eb5f18e9e9c6855935c1149afa9a5edfbe1 (patch)
tree0c6c2e3fb38d4acbe50dd9ba6d984ae1c5b855a7 /gdb/interps.c
parente4239559f48767a4fe6778017908a96649330be5 (diff)
downloadgdb-19081eb5f18e9e9c6855935c1149afa9a5edfbe1.zip
gdb-19081eb5f18e9e9c6855935c1149afa9a5edfbe1.tar.gz
gdb-19081eb5f18e9e9c6855935c1149afa9a5edfbe1.tar.bz2
gdb: add interp::on_breakpoint_modified method
Same idea as previous patches, but for breakpoint_modified. Change-Id: I4f0a9edea912de431e32451d74224b2022a7c328
Diffstat (limited to 'gdb/interps.c')
-rw-r--r--gdb/interps.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/interps.c b/gdb/interps.c
index dc36af6..d572f92 100644
--- a/gdb/interps.c
+++ b/gdb/interps.c
@@ -575,6 +575,14 @@ interps_notify_breakpoint_deleted (breakpoint *b)
interps_notify (&interp::on_breakpoint_deleted, b);
}
+/* See interps.h. */
+
+void
+interps_notify_breakpoint_modified (breakpoint *b)
+{
+ interps_notify (&interp::on_breakpoint_modified, b);
+}
+
/* This just adds the "interpreter-exec" command. */
void _initialize_interpreter ();
void