diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2022-12-02 15:09:21 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2022-12-05 16:38:45 -0500 |
commit | ef632b4bf84e6e60e58b76b7e7471c82e1507854 (patch) | |
tree | 8e1ff4832b981642ee26db1fe51e32b64d7f3a89 /gdb/linux-nat.c | |
parent | 0acd1110b69839d484b4b536a24b3477b06d6dfa (diff) | |
download | gdb-ef632b4bf84e6e60e58b76b7e7471c82e1507854.zip gdb-ef632b4bf84e6e60e58b76b7e7471c82e1507854.tar.gz gdb-ef632b4bf84e6e60e58b76b7e7471c82e1507854.tar.bz2 |
gdb/linux-nat: bool-ify linux_nat_get_siginfo
Change return type to bool.
Change-Id: I1bf0360bfdd1b5994cd0f96c268d806f96fe51a4
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 9ab8b84..7b6a1f9 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. */ |