aboutsummaryrefslogtreecommitdiff
path: root/gdbserver/ChangeLog
diff options
context:
space:
mode:
authorTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2020-02-17 16:11:54 +0100
committerTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2020-02-20 17:35:07 +0100
commita2b2297a204898fa273a825d82385ce1b48941e3 (patch)
tree71e3d68fc4502d203cda96e0637acd371a4f4ba6 /gdbserver/ChangeLog
parenteac215cc618400bd4f808ce48fa51fd53c702adc (diff)
downloadfsf-binutils-gdb-a2b2297a204898fa273a825d82385ce1b48941e3.zip
fsf-binutils-gdb-a2b2297a204898fa273a825d82385ce1b48941e3.tar.gz
fsf-binutils-gdb-a2b2297a204898fa273a825d82385ce1b48941e3.tar.bz2
gdbserver: turn target op 'supports_z_point_type' into a method
gdbserver/ChangeLog: 2020-02-20 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> Turn process_stratum_target's supports_z_point_type op into a method of process_target. * target.h (struct process_stratum_target): Remove the target op. (class process_target): Add the target op. * target.cc (process_target::supports_z_point_type): Define. Update the derived classes and callers below. * mem-break.cc (z_type_supported): Update. * linux-low.cc (linux_target_ops): Update. (linux_supports_z_point_type): Turn into ... (linux_process_target::supports_z_point_type): ... this. * linux-low.h (class linux_process_target): Update. * lynx-low.cc (lynx_target_ops): Update. * nto-low.cc (nto_target_ops): Update. (nto_supports_z_point_type): Turn into ... (nto_process_target::supports_z_point_type): ... this. * nto-low.h (class nto_process_target): Update. * win32-low.cc (win32_target_ops): Update. (win32_supports_z_point_type): Turn into ... (win32_process_target::supports_z_point_type): ... this. * win32-low.h (class win32_process_target): Update.
Diffstat (limited to 'gdbserver/ChangeLog')
-rw-r--r--gdbserver/ChangeLog26
1 files changed, 26 insertions, 0 deletions
diff --git a/gdbserver/ChangeLog b/gdbserver/ChangeLog
index 4f759af..7afc59f 100644
--- a/gdbserver/ChangeLog
+++ b/gdbserver/ChangeLog
@@ -1,5 +1,31 @@
2020-02-20 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
+ Turn process_stratum_target's supports_z_point_type op into a
+ method of process_target.
+
+ * target.h (struct process_stratum_target): Remove the target op.
+ (class process_target): Add the target op.
+ * target.cc (process_target::supports_z_point_type): Define.
+
+ Update the derived classes and callers below.
+
+ * mem-break.cc (z_type_supported): Update.
+ * linux-low.cc (linux_target_ops): Update.
+ (linux_supports_z_point_type): Turn into ...
+ (linux_process_target::supports_z_point_type): ... this.
+ * linux-low.h (class linux_process_target): Update.
+ * lynx-low.cc (lynx_target_ops): Update.
+ * nto-low.cc (nto_target_ops): Update.
+ (nto_supports_z_point_type): Turn into ...
+ (nto_process_target::supports_z_point_type): ... this.
+ * nto-low.h (class nto_process_target): Update.
+ * win32-low.cc (win32_target_ops): Update.
+ (win32_supports_z_point_type): Turn into ...
+ (win32_process_target::supports_z_point_type): ... this.
+ * win32-low.h (class win32_process_target): Update.
+
+2020-02-20 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
+
Turn process_stratum_target's read_auxv op into a method of
process_target.