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 f111945c..49fbc5e 100644 --- a/gdbserver/linux-low.h +++ b/gdbserver/linux-low.h @@ -131,9 +131,6 @@ struct lwp_info; struct linux_target_ops { - /* Hook to call prior to resuming a thread. */ - void (*prepare_to_resume) (struct lwp_info *); - /* Hook to support target specific qSupported. */ void (*process_qsupported) (char **, int count); @@ -720,6 +717,9 @@ protected: /* Hook to call, if any, when a new fork is attached. */ virtual void low_new_fork (process_info *parent, process_info *child); + /* Hook to call prior to resuming a thread. */ + virtual void low_prepare_to_resume (lwp_info *lwp); + /* How many bytes the PC should be decremented after a break. */ virtual int low_decr_pc_after_break (); }; |