diff options
author | Tom Tromey <tromey@adacore.com> | 2019-04-04 17:03:27 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-04-09 11:59:25 -0600 |
commit | 9ab8741a48294e19d514721c710c81bba46db7f2 (patch) | |
tree | 4d5ae9a1a3992e59d5d23ad1c256278f422d4d08 /gdb/corelow.c | |
parent | 9ca1957fcb3c6904d9e5fb0a0e78d4b98f76b1b6 (diff) | |
download | binutils-9ab8741a48294e19d514721c710c81bba46db7f2.zip binutils-9ab8741a48294e19d514721c710c81bba46db7f2.tar.gz binutils-9ab8741a48294e19d514721c710c81bba46db7f2.tar.bz2 |
Consistently use bool for fake_pid_p
I noticed a few spots where fake_pid_p is handled as an int, whereas
the field in struct inferior has type bool. This patch changes the
remaining places to use bool as well.
Tested by the buildbot.
gdb/ChangeLog
2019-04-09 Tom Tromey <tromey@adacore.com>
* remote.c (remote_target::remote_add_inferior): Change fake_pid_p
to bool.
(extended_remote_target::attach): Update.
(remote_target::remote_notice_new_inferior): Update.
(remote_target::add_current_inferior_and_thread): Update.
* inferior.c (exit_inferior_1): Use "false".
* corelow.c (add_to_thread_list): Make fake_pid_p bool.
Diffstat (limited to 'gdb/corelow.c')
-rw-r--r-- | gdb/corelow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/corelow.c b/gdb/corelow.c index 22fe7de..3ce612d 100644 --- a/gdb/corelow.c +++ b/gdb/corelow.c @@ -285,7 +285,7 @@ add_to_thread_list (bfd *abfd, asection *asect, void *reg_sect_arg) int core_tid; int pid, lwpid; asection *reg_sect = (asection *) reg_sect_arg; - int fake_pid_p = 0; + bool fake_pid_p = false; struct inferior *inf; if (!startswith (bfd_section_name (abfd, asect), ".reg/")) @@ -296,7 +296,7 @@ add_to_thread_list (bfd *abfd, asection *asect, void *reg_sect_arg) pid = bfd_core_file_pid (core_bfd); if (pid == 0) { - fake_pid_p = 1; + fake_pid_p = true; pid = CORELOW_PID; } |