diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2017-12-02 20:36:44 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2017-12-02 20:36:44 -0500 |
commit | 8f86d7aa8504e9a557e807a3e37718055befcd84 (patch) | |
tree | cbe4ba21c4156e9a3661e5fbb1baaeed730a3209 /gdb | |
parent | e2b4407579df508f85de961dd693c9028e79d823 (diff) | |
download | binutils-8f86d7aa8504e9a557e807a3e37718055befcd84.zip binutils-8f86d7aa8504e9a557e807a3e37718055befcd84.tar.gz binutils-8f86d7aa8504e9a557e807a3e37718055befcd84.tar.bz2 |
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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/gdbserver/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/gdbserver/linux-low.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 1cc6ec6..ca998db 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,5 +1,10 @@ 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> + * linux-low.c (proceed_one_lwp): Return void, change parameter type. (unsuspend_and_proceed_one_lwp): Likewise. diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index 408208f..d5449c4 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -4625,8 +4625,8 @@ linux_set_resume_request (thread_info *thread, thread_resume *resume, size_t n) lwp->resume = NULL; } -/* find_inferior callback for linux_resume. - Set *FLAG_P if this lwp has an interesting status pending. */ +/* find_thread callback for linux_resume. Return true if this lwp has an + interesting status pending. */ static bool resume_status_pending_p (thread_info *thread) @@ -4760,7 +4760,7 @@ need_step_over_p (thread_info *thread) lwpid_of (thread), paddress (pc)); /* 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; return true; |