diff options
Diffstat (limited to 'gdbserver/linux-low.h')
-rw-r--r-- | gdbserver/linux-low.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdbserver/linux-low.h b/gdbserver/linux-low.h index 6db56d0..86a563a 100644 --- a/gdbserver/linux-low.h +++ b/gdbserver/linux-low.h @@ -131,9 +131,6 @@ struct lwp_info; struct linux_target_ops { - /* Returns true if the low target supports range stepping. */ - int (*supports_range_stepping) (void); - /* See target.h. */ int (*supports_hardware_single_step) (void); @@ -678,6 +675,9 @@ protected: success, -1 on failure. */ virtual int low_get_thread_area (int lwpid, CORE_ADDR *addrp); + /* Returns true if the low target supports range stepping. */ + virtual bool low_supports_range_stepping (); + /* How many bytes the PC should be decremented after a break. */ virtual int low_decr_pc_after_break (); }; |