gdb/linux-nat: bool-ify linux_nat_get_siginfo
Change return type to bool. Change-Id: I1bf0360bfdd1b5994cd0f96c268d806f96fe51a4
This commit is contained in:
parent
0acd1110b6
commit
ef632b4bf8
2 changed files with 5 additions and 5 deletions
|
@ -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. */
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue