X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=gdbserver%2FChangeLog;h=1cd9c91a8d32b29ef38577360969207cee5124e6;hb=d633e8314093fd3ae9a5aec4fc25d86ebaea6ae8;hp=4a299bc7b843c762b3ae1402d53efa2f5a45eeb9;hpb=bc8d3ae4328513fad0120244b734d533f84906d7;p=deliverable%2Fbinutils-gdb.git diff --git a/gdbserver/ChangeLog b/gdbserver/ChangeLog index 4a299bc7b8..1cd9c91a8d 100644 --- a/gdbserver/ChangeLog +++ b/gdbserver/ChangeLog @@ -1,3 +1,23 @@ +2020-02-20 Tankut Baris Aktemur + + Turn process_stratum_target's get_ipa_tdesc_idx 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_get_ipa_tdesc_idx): Update the macro. + * target.cc (process_target::get_ipa_tdesc_idx): Define. + + Update the derived classes and callers below. + + * linux-low.cc (linux_target_ops): Update. + (linux_get_ipa_tdesc_idx): Turn into ... + (linux_process_target::get_ipa_tdesc_idx): ... this. + * linux-low.h (class linux_process_target): Update. + * lynx-low.cc (lynx_target_ops): Update. + * nto-low.cc (nto_target_ops): Update. + * win32-low.cc (win32_target_ops): Update. + 2020-02-20 Tankut Baris Aktemur Turn process_stratum_target's supports_catch_syscall op into a