mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
Update comments
These functions were modified in the previous patch series, but I forgot to update some comments. gdb/gdbserver/ChangeLog: * linux-low.c (resume_status_pending_p): Update comment. (need_step_over_p): Update comment.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2017-12-02 Simon Marchi <simon.marchi@polymtl.ca>
|
||||||
|
|
||||||
|
* linux-low.c (resume_status_pending_p): Update comment.
|
||||||
|
(need_step_over_p): Update comment.
|
||||||
|
|
||||||
2017-12-02 Simon Marchi <simon.marchi@polymtl.ca>
|
2017-12-02 Simon Marchi <simon.marchi@polymtl.ca>
|
||||||
|
|
||||||
* linux-low.c (proceed_one_lwp): Return void, change parameter
|
* linux-low.c (proceed_one_lwp): Return void, change parameter
|
||||||
|
@ -4625,8 +4625,8 @@ linux_set_resume_request (thread_info *thread, thread_resume *resume, size_t n)
|
|||||||
lwp->resume = NULL;
|
lwp->resume = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* find_inferior callback for linux_resume.
|
/* find_thread callback for linux_resume. Return true if this lwp has an
|
||||||
Set *FLAG_P if this lwp has an interesting status pending. */
|
interesting status pending. */
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
resume_status_pending_p (thread_info *thread)
|
resume_status_pending_p (thread_info *thread)
|
||||||
@ -4760,7 +4760,7 @@ need_step_over_p (thread_info *thread)
|
|||||||
lwpid_of (thread), paddress (pc));
|
lwpid_of (thread), paddress (pc));
|
||||||
|
|
||||||
/* We've found an lwp that needs stepping over --- return 1 so
|
/* We've found an lwp that needs stepping over --- return 1 so
|
||||||
that find_inferior stops looking. */
|
that find_thread stops looking. */
|
||||||
current_thread = saved_thread;
|
current_thread = saved_thread;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Reference in New Issue
Block a user