gdb: make target_is_non_stop_p return bool
authorSimon Marchi <simon.marchi@polymtl.ca>
Thu, 4 Feb 2021 20:45:20 +0000 (15:45 -0500)
committerSimon Marchi <simon.marchi@polymtl.ca>
Thu, 4 Feb 2021 20:47:28 +0000 (15:47 -0500)
gdb/ChangeLog:

* target.c (target_is_non_stop_p): Return bool.
* target.h (target_is_non_stop_p): Return bool.

Change-Id: Icdb37ffe917798e59b822976794d4b1b7aafd709

gdb/ChangeLog
gdb/target.c
gdb/target.h

index c73a8cd9df3962fe23729fdd009c377717c77150..4078e0e767511575e272ef3ec29406accd0c2db9 100644 (file)
@@ -1,3 +1,8 @@
+2021-02-04  Simon Marchi  <simon.marchi@polymtl.ca>
+
+       * target.c (target_is_non_stop_p): Return bool.
+       * target.h (target_is_non_stop_p): Return bool.
+
 2021-02-04  Simon Marchi  <simon.marchi@efficios.com>
 
        * record-full.c (record_full_async_inferior_event_handler):
index 9a8473d40e1afebcbc6af935dcc78fc5f1c3e5a6..06d7b4fbf8eb2cfb970d70b6283fd0fd1a57c497 100644 (file)
@@ -3729,8 +3729,8 @@ target_always_non_stop_p (void)
 
 /* See target.h.  */
 
-int
-target_is_non_stop_p (void)
+bool
+target_is_non_stop_p ()
 {
   return (non_stop
          || target_non_stop_enabled == AUTO_BOOLEAN_TRUE
index c97ef690e01c167667ed8ddfba962bdfa58ba514..0de78075e9b5b4d2bf85cca88d1cfd51a6b3ac9a 100644 (file)
@@ -1873,7 +1873,7 @@ extern enum auto_boolean target_non_stop_enabled;
 /* Is the target in non-stop mode?  Some targets control the inferior
    in non-stop mode even with "set non-stop off".  Always true if "set
    non-stop" is on.  */
-extern int target_is_non_stop_p (void);
+extern bool target_is_non_stop_p ();
 
 /* Return true if at least one inferior has a non-stop target.  */
 extern bool exists_non_stop_target ();