Boolify print_solib_event
authorTom Tromey <tom@tromey.com>
Thu, 13 Jan 2022 23:32:33 +0000 (16:32 -0700)
committerTom Tromey <tom@tromey.com>
Fri, 29 Apr 2022 22:14:30 +0000 (16:14 -0600)
Change print_solib_event to accept a bool parameter and update the
callers.

gdb/break-catch-load.c
gdb/breakpoint.c
gdb/breakpoint.h

index 93e371c00cac034d88c248eb58a68e34c0216d4f..393fc61923d0ad7e52d9db498ddb662b8707d0f6 100644 (file)
@@ -133,7 +133,7 @@ print_it_catch_solib (bpstat *bs)
   uiout->text ("\n");
   if (uiout->is_mi_like_p ())
     uiout->field_string ("disp", bpdisp_text (b->disposition));
-  print_solib_event (1);
+  print_solib_event (true);
   return PRINT_SRC_AND_LOC;
 }
 
index 0710f7251dd867d54d0ce331f1e55e643ee1134e..683b24beb7e78a824890cfc981622c428021cb7b 100644 (file)
@@ -4628,7 +4628,7 @@ print_bp_stop_message (bpstat *bs)
 /* See breakpoint.h.  */
 
 void
-print_solib_event (int is_catchpoint)
+print_solib_event (bool is_catchpoint)
 {
   bool any_deleted = !current_program_space->deleted_solibs.empty ();
   bool any_added = !current_program_space->added_solibs.empty ();
@@ -4721,7 +4721,7 @@ bpstat_print (bpstat *bs, int kind)
      OS-level shared library event, do the same thing.  */
   if (kind == TARGET_WAITKIND_LOADED)
     {
-      print_solib_event (0);
+      print_solib_event (false);
       return PRINT_NOTHING;
     }
 
@@ -11910,7 +11910,7 @@ internal_bkpt_print_it (bpstat *bs)
       /* Did we stop because the user set the stop_on_solib_events
         variable?  (If so, we report this as a generic, "Stopped due
         to shlib event" message.) */
-      print_solib_event (0);
+      print_solib_event (false);
       break;
 
     case bp_thread_event:
index e71f93bb5cd8e1e4d2308675ecb8bc23170161ac..8c0c3a3d5b9e8f3a38e5653a7512bc87d426a388 100644 (file)
@@ -1807,6 +1807,6 @@ extern void catch_exception_event (enum exception_event_kind ex_event,
    IS_CATCHPOINT is true if the event is due to a "catch load"
    catchpoint, false otherwise.  */
 
-extern void print_solib_event (int is_catchpoint);
+extern void print_solib_event (bool is_catchpoint);
 
 #endif /* !defined (BREAKPOINT_H) */