diff options
author | Christian Biesinger <cbiesinger@google.com> | 2019-10-01 14:50:54 -0500 |
---|---|---|
committer | Christian Biesinger <cbiesinger@google.com> | 2019-10-02 14:48:53 -0500 |
commit | 3e6ec53ac1d44f890b206d4b8eb91ba9dad3e4d9 (patch) | |
tree | a4364939afd65de6e34ff32ed286ead47ee3367f /gdb/gdbserver/ChangeLog | |
parent | 80fd2826411c1033ec403658c5f3187bf9c1740a (diff) | |
download | gdb-3e6ec53ac1d44f890b206d4b8eb91ba9dad3e4d9.zip gdb-3e6ec53ac1d44f890b206d4b8eb91ba9dad3e4d9.tar.gz gdb-3e6ec53ac1d44f890b206d4b8eb91ba9dad3e4d9.tar.bz2 |
Convert boolean globals in server.c to bool
Converts the int globals to bool.
gdb/gdbserver/ChangeLog:
2019-10-02 Christian Biesinger <cbiesinger@google.com>
* server.c (server_waiting): Change to bool.
(extended_protocol): Likewise.
(response_needed): Likewise.
(exit_requested): Likewise.
(run_once): Likewise.
(report_no_resumed): Likewise.
(non_stop): Likewise.
(disable_packet_vCont): Likewise.
(disable_packet_Tthread): Likewise.
(disable_packet_qC): Likewise.
(disable_packet_qfThreadInfo): Likewise.
(handle_general_set): Update.
(handle_detach): Update.
(handle_monitor_command): Update.
(handle_query): Update.
(captured_main): Update.
(process_serial_event): Update.
* server.h (server_waiting): Change to bool.
(disable_packet_vCont): Likewise.
(disable_packet_Tthread): Likewise.
(disable_packet_qC): Likewise.
(disable_packet_qfThreadInfo): Likewise.
(run_once): Likewise.
(non_stop): Likewise.
* target.c (target_stop_and_wait): Update.
Diffstat (limited to 'gdb/gdbserver/ChangeLog')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 0108d6d..1b67a28 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,31 @@ +2019-10-02 Christian Biesinger <cbiesinger@google.com> + + * server.c (server_waiting): Change to bool. + (extended_protocol): Likewise. + (response_needed): Likewise. + (exit_requested): Likewise. + (run_once): Likewise. + (report_no_resumed): Likewise. + (non_stop): Likewise. + (disable_packet_vCont): Likewise. + (disable_packet_Tthread): Likewise. + (disable_packet_qC): Likewise. + (disable_packet_qfThreadInfo): Likewise. + (handle_general_set): Update. + (handle_detach): Update. + (handle_monitor_command): Update. + (handle_query): Update. + (captured_main): Update. + (process_serial_event): Update. + * server.h (server_waiting): Change to bool. + (disable_packet_vCont): Likewise. + (disable_packet_Tthread): Likewise. + (disable_packet_qC): Likewise. + (disable_packet_qfThreadInfo): Likewise. + (run_once): Likewise. + (non_stop): Likewise. + * target.c (target_stop_and_wait): Update. + 2019-10-02 Tom Tromey <tromey@adacore.com> * Makefile.in (SFILES): Add common-inferior.c. |