diff options
author | Pedro Alves <palves@redhat.com> | 2018-05-22 18:22:11 +0100 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2018-05-22 18:34:39 +0100 |
commit | f5db4863f51b83bc6b54504d61e1731011cfdec2 (patch) | |
tree | 140eff9933ca9e441dc652ca1788b12f896b2613 /gdb/ChangeLog | |
parent | cc0be08f80d4348e8f81471c80409710c4d4cd1a (diff) | |
download | gdb-f5db4863f51b83bc6b54504d61e1731011cfdec2.zip gdb-f5db4863f51b83bc6b54504d61e1731011cfdec2.tar.gz gdb-f5db4863f51b83bc6b54504d61e1731011cfdec2.tar.bz2 |
remote: Make vcont_builder a class
gdb/ChangeLog:
2018-05-22 Pedro Alves <palves@redhat.com>
* remote.c (vcont_builder): Now a class. Make all data members
private.
(vcont_builder) <vcont_builder, restart, flush, push_action>:
Declare methods.
(vcont_builder_restart): Rename to ...
(vcont_builder::restart): ... this.
(vcont_builder_flush): Rename to ...
(vcont_builder::flush): ... this.
(vcont_builder_push_action): Rename to ...
(vcont_builder::push_action): ... this.
(remote_target::commit_resume): Adjust.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3504a3c..501ee86 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,19 @@ 2018-05-22 Pedro Alves <palves@redhat.com> + * remote.c (vcont_builder): Now a class. Make all data members + private. + (vcont_builder) <vcont_builder, restart, flush, push_action>: + Declare methods. + (vcont_builder_restart): Rename to ... + (vcont_builder::restart): ... this. + (vcont_builder_flush): Rename to ... + (vcont_builder::flush): ... this. + (vcont_builder_push_action): Rename to ... + (vcont_builder::push_action): ... this. + (remote_target::commit_resume): Adjust. + +2018-05-22 Pedro Alves <palves@redhat.com> + * remote.c (DEFAULT_MAX_MEMORY_PACKET_SIZE): Rename to ... (DEFAULT_MAX_MEMORY_PACKET_SIZE_FIXED): ... this. (get_fixed_memory_packet_size): New. |