public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdb/linux-nat: bool-ify linux_nat_get_siginfo
@ 2022-12-05 21:39 Simon Marchi
  0 siblings, 0 replies; only message in thread
From: Simon Marchi @ 2022-12-05 21:39 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=ef632b4bf84e6e60e58b76b7e7471c82e1507854

commit ef632b4bf84e6e60e58b76b7e7471c82e1507854
Author: Simon Marchi <simon.marchi@polymtl.ca>
Date:   Fri Dec 2 15:09:21 2022 -0500

    gdb/linux-nat: bool-ify linux_nat_get_siginfo
    
    Change return type to bool.
    
    Change-Id: I1bf0360bfdd1b5994cd0f96c268d806f96fe51a4

Diff:
---
 gdb/linux-nat.c | 6 +++---
 gdb/linux-nat.h | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c
index 9ab8b845cbb..7b6a1f98d66 100644
--- a/gdb/linux-nat.c
+++ b/gdb/linux-nat.c
@@ -4439,7 +4439,7 @@ linux_nat_target::linux_nat_target ()
 
 /* See linux-nat.h.  */
 
-int
+bool
 linux_nat_get_siginfo (ptid_t ptid, siginfo_t *siginfo)
 {
   int pid = get_ptrace_pid (ptid);
@@ -4449,9 +4449,9 @@ linux_nat_get_siginfo (ptid_t ptid, siginfo_t *siginfo)
   if (errno != 0)
     {
       memset (siginfo, 0, sizeof (*siginfo));
-      return 0;
+      return false;
     }
-  return 1;
+  return true;
 }
 
 /* See nat/linux-nat.h.  */
diff --git a/gdb/linux-nat.h b/gdb/linux-nat.h
index a9b91a5e908..576924395e7 100644
--- a/gdb/linux-nat.h
+++ b/gdb/linux-nat.h
@@ -330,8 +330,8 @@ extern void linux_unstop_all_lwps (void);
 void linux_nat_switch_fork (ptid_t new_ptid);
 
 /* Store the saved siginfo associated with PTID in *SIGINFO.
-   Return 1 if it was retrieved successfully, 0 otherwise (*SIGINFO is
+   Return true if it was retrieved successfully, false otherwise (*SIGINFO is
    uninitialized in such case).  */
-int linux_nat_get_siginfo (ptid_t ptid, siginfo_t *siginfo);
+bool linux_nat_get_siginfo (ptid_t ptid, siginfo_t *siginfo);
 
 #endif /* LINUX_NAT_H */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-12-05 21:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-05 21:39 [binutils-gdb] gdb/linux-nat: bool-ify linux_nat_get_siginfo Simon Marchi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).