diff options
author | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-02-17 16:11:54 +0100 |
---|---|---|
committer | Tankut Baris Aktemur <tankut.baris.aktemur@intel.com> | 2020-02-20 17:35:07 +0100 |
commit | 7e0bde70ca4ea73461365e95d2fcaae8fb925ab4 (patch) | |
tree | 8256b5a6bffcad796b759b41d77c745df25b38d1 /gdbserver/win32-low.cc | |
parent | a2b2297a204898fa273a825d82385ce1b48941e3 (diff) | |
download | gdb-7e0bde70ca4ea73461365e95d2fcaae8fb925ab4.zip gdb-7e0bde70ca4ea73461365e95d2fcaae8fb925ab4.tar.gz gdb-7e0bde70ca4ea73461365e95d2fcaae8fb925ab4.tar.bz2 |
gdbserver: turn target ops 'insert_point' and 'remove_point' into methods
gdbserver/ChangeLog:
2020-02-20 Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Turn process_stratum_target's insert_point and remove_point ops
into methods of process_target.
* target.h (struct process_stratum_target): Remove the target ops.
(class process_target): Add the target ops.
* target.cc (process_target::insert_point): Define.
(process_target::remove_point): Define.
Update the derived classes and callers below.
* mem-break.cc (set_raw_breakpoint_at): Update.
(delete_raw_breakpoint): Update.
(uninsert_raw_breakpoint): Update.
(reinsert_raw_breakpoint): Update.
* linux-low.cc (linux_target_ops): Update.
(linux_insert_point): Turn into ...
(linux_process_target::insert_point): ... this.
(linux_remove_point): Turn into ...
(linux_process_target::remove_point): ... this.
* linux-low.h (class linux_process_target): Update.
* lynx-low.cc (lynx_target_ops): Update.
* nto-low.cc (nto_target_ops): Update.
(nto_insert_point): Turn into ...
(nto_process_target::insert_point): ... this.
(nto_remove_point): Turn into ...
(nto_process_target::remove_point): ... this.
* nto-low.h (class nto_process_target): Update.
* win32-low.cc (win32_target_ops): Update.
(win32_insert_point): Turn into ...
(win32_process_target::insert_point): ... this.
(win32_remove_point): Turn into ...
(win32_process_target::remove_point): ... this.
* win32-low.h (class win32_process_target): Update.
Diffstat (limited to 'gdbserver/win32-low.cc')
-rw-r--r-- | gdbserver/win32-low.cc | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gdbserver/win32-low.cc b/gdbserver/win32-low.cc index 024748e..c42d8d7 100644 --- a/gdbserver/win32-low.cc +++ b/gdbserver/win32-low.cc @@ -261,9 +261,9 @@ win32_process_target::supports_z_point_type (char z_type) && the_low_target.supports_z_point_type (z_type)); } -static int -win32_insert_point (enum raw_bkpt_type type, CORE_ADDR addr, - int size, struct raw_breakpoint *bp) +int +win32_process_target::insert_point (enum raw_bkpt_type type, CORE_ADDR addr, + int size, raw_breakpoint *bp) { if (the_low_target.insert_point != NULL) return the_low_target.insert_point (type, addr, size, bp); @@ -272,9 +272,9 @@ win32_insert_point (enum raw_bkpt_type type, CORE_ADDR addr, return 1; } -static int -win32_remove_point (enum raw_bkpt_type type, CORE_ADDR addr, - int size, struct raw_breakpoint *bp) +int +win32_process_target::remove_point (enum raw_bkpt_type type, CORE_ADDR addr, + int size, raw_breakpoint *bp) { if (the_low_target.remove_point != NULL) return the_low_target.remove_point (type, addr, size, bp); @@ -1838,8 +1838,6 @@ win32_sw_breakpoint_from_kind (int kind, int *size) static win32_process_target the_win32_target; static process_stratum_target win32_target_ops = { - win32_insert_point, - win32_remove_point, NULL, /* stopped_by_sw_breakpoint */ NULL, /* supports_stopped_by_sw_breakpoint */ NULL, /* stopped_by_hw_breakpoint */ |