aboutsummaryrefslogtreecommitdiff
path: root/gdb/break-catch-fork.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-04-30 12:36:08 -0600
committerTom Tromey <tom@tromey.com>2022-05-06 12:03:34 -0600
commit4d1ae558932c17415bbe5b0dbec0a7539a19b6d5 (patch)
tree112b526c892a406aafa7e66592e575953a6f5336 /gdb/break-catch-fork.c
parentb713485d666a822a9e65c0272c8d7de51baa8b5f (diff)
downloadgdb-4d1ae558932c17415bbe5b0dbec0a7539a19b6d5.zip
gdb-4d1ae558932c17415bbe5b0dbec0a7539a19b6d5.tar.gz
gdb-4d1ae558932c17415bbe5b0dbec0a7539a19b6d5.tar.bz2
Constify breakpoint::print_recreate
This constifies breakpoint::print_recreate.
Diffstat (limited to 'gdb/break-catch-fork.c')
-rw-r--r--gdb/break-catch-fork.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/break-catch-fork.c b/gdb/break-catch-fork.c
index 1fbea57..e8d613f 100644
--- a/gdb/break-catch-fork.c
+++ b/gdb/break-catch-fork.c
@@ -44,7 +44,7 @@ struct fork_catchpoint : public breakpoint
enum print_stop_action print_it (const bpstat *bs) const override;
bool print_one (bp_location **) const override;
void print_mention () const override;
- void print_recreate (struct ui_file *fp) override;
+ void print_recreate (struct ui_file *fp) const override;
/* True if the breakpoint is for vfork, false for fork. */
bool is_vfork;
@@ -169,7 +169,7 @@ fork_catchpoint::print_mention () const
/* Implement the "print_recreate" method for fork catchpoints. */
void
-fork_catchpoint::print_recreate (struct ui_file *fp)
+fork_catchpoint::print_recreate (struct ui_file *fp) const
{
gdb_printf (fp, "catch %s", is_vfork ? "vfork" : "fork");
print_recreate_thread (fp);