diff options
author | Yao Qi <yao.qi@linaro.org> | 2016-07-21 12:12:18 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2016-07-21 12:12:18 +0100 |
commit | 21536b367ce73eed103e1389b5f45010f0c96bbb (patch) | |
tree | 54558eeac7d9fbd3d465e6beade08c437927b23a /gdb/gdbserver/ChangeLog | |
parent | 8901d1936e4e691f0b3b976f5626ac5a8f27aa7f (diff) | |
download | gdb-21536b367ce73eed103e1389b5f45010f0c96bbb.zip gdb-21536b367ce73eed103e1389b5f45010f0c96bbb.tar.gz gdb-21536b367ce73eed103e1389b5f45010f0c96bbb.tar.bz2 |
Support vCont s and S actions with software single step
GDBserver with software single step should be able to claim supporting
vCont s and S actions, so that GDB knows the remote target can do
single step. It doesn't matter to GDB that the single step in the
remote target is done via hardware or software.
gdb/gdbserver:
2016-07-21 Yao Qi <yao.qi@linaro.org>
* server.c (handle_v_requests): Support s and S actions
if target_supports_software_single_step return true.
Diffstat (limited to 'gdb/gdbserver/ChangeLog')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index e55bae0..1592a11 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,10 @@ 2016-07-21 Yao Qi <yao.qi@linaro.org> + * server.c (handle_v_requests): Support s and S actions + if target_supports_software_single_step return true. + +2016-07-21 Yao Qi <yao.qi@linaro.org> + * linux-low.c (resume_stopped_resumed_lwps): If resume request is resume_step, call maybe_hw_step. (linux_wait_1): Stop all threads, remove reinsert breakpoints, |