From: Simon Marchi Date: Thu, 4 Feb 2021 20:45:20 +0000 (-0500) Subject: gdb: make target_is_non_stop_p return bool X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6ff267e18624c4287e2e9ea6976d70ad31f8e3b1;p=binutils-gdb.git gdb: make target_is_non_stop_p return bool gdb/ChangeLog: * target.c (target_is_non_stop_p): Return bool. * target.h (target_is_non_stop_p): Return bool. Change-Id: Icdb37ffe917798e59b822976794d4b1b7aafd709 --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c73a8cd9df3..4078e0e7675 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2021-02-04 Simon Marchi + + * target.c (target_is_non_stop_p): Return bool. + * target.h (target_is_non_stop_p): Return bool. + 2021-02-04 Simon Marchi * record-full.c (record_full_async_inferior_event_handler): diff --git a/gdb/target.c b/gdb/target.c index 9a8473d40e1..06d7b4fbf8e 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -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 diff --git a/gdb/target.h b/gdb/target.h index c97ef690e01..0de78075e9b 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -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 ();