diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-11-02 01:37:32 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2010-11-02 01:37:32 +0000 |
commit | a289b8f64e80d14000a8c35d51fe9d78d33bc83d (patch) | |
tree | 0b4abe18b22ecbdd38e24a59ccbb107b8abe58bb /gdb/infrun.c | |
parent | 6d0cd39eb22c4ff76d1c360fdbef4b7506f95327 (diff) | |
download | gdb-a289b8f64e80d14000a8c35d51fe9d78d33bc83d.zip gdb-a289b8f64e80d14000a8c35d51fe9d78d33bc83d.tar.gz gdb-a289b8f64e80d14000a8c35d51fe9d78d33bc83d.tar.bz2 |
gdb/
Revert:
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.
gdb/testsuite/
Revert:
2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb.threads/sigstep-threads.exp: New file.
* gdb.threads/sigstep-threads.c: New file.
Diffstat (limited to 'gdb/infrun.c')
-rw-r--r-- | gdb/infrun.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/infrun.c b/gdb/infrun.c index edd4a40..240cd95 100644 --- a/gdb/infrun.c +++ b/gdb/infrun.c @@ -74,6 +74,8 @@ static int follow_fork (void); static void set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c); +static int currently_stepping (struct thread_info *tp); + static int currently_stepping_or_nexting_callback (struct thread_info *tp, void *data); @@ -4849,7 +4851,7 @@ infrun: not switching back to stepped thread, it has vanished\n"); /* Is thread TP in the middle of single-stepping? */ -int +static int currently_stepping (struct thread_info *tp) { return ((tp->step_range_end && tp->step_resume_breakpoint == NULL) |