diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-10-17 18:24:47 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-10-17 18:24:47 +0000 |
commit | 8aeb23f3648c6ef10c5715e30f04563d1cc28709 (patch) | |
tree | 09ebcca5a6758a48adbce553314e6b2fc71befe3 /gdb/ChangeLog | |
parent | c1e56572463d2126e46eda8ce8d4bce221667f98 (diff) | |
download | gdb-8aeb23f3648c6ef10c5715e30f04563d1cc28709.zip gdb-8aeb23f3648c6ef10c5715e30f04563d1cc28709.tar.gz gdb-8aeb23f3648c6ef10c5715e30f04563d1cc28709.tar.bz2 |
gdb/
* gdbthread.h (currently_stepping): New declaration.
* infrun.c (currently_stepping): Remove the forward declaration.
(currently_stepping): Make it global.
* linux-nat.c (resume_callback) <lp->stopped && lp->status == 0>: New
variables tp and step, initialized them. Pass STEP to to_resume.
Print also possibly "PTRACE_SINGLESTEP" if STEP. Initialize LP->STEP.
* remote.c (currently_stepping_callback): New.
(remote_vcont_resume)
<ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)>:
New variable tp. Call currently_stepping_callback and step such
thread.
gdb/testsuite/
* gdb.threads/sigstep-threads.exp: New file.
* gdb.threads/sigstep-threads.c: New file.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ba12684..3cdd41c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,4 +1,19 @@ 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com> + Pedro Alves <pedro@codesourcery.com> + + * gdbthread.h (currently_stepping): New declaration. + * infrun.c (currently_stepping): Remove the forward declaration. + (currently_stepping): Make it global. + * linux-nat.c (resume_callback) <lp->stopped && lp->status == 0>: New + variables tp and step, initialized them. Pass STEP to to_resume. + Print also possibly "PTRACE_SINGLESTEP" if STEP. Initialize LP->STEP. + * remote.c (currently_stepping_callback): New. + (remote_vcont_resume) + <ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)>: + New variable tp. Call currently_stepping_callback and step such + thread. + +2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com> * infrun.c (follow_exec): Replace symbol_file_add_main by symbol_file_add with SYMFILE_DEFER_BP_RESET, set_initial_language and |