diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/linux-nat.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a48c0a9..0e58831 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2008-03-17 Pedro Alves <pedro@codesourcery.com> + * linux-nat.c (linux_nat_filter_event): Fix comment typo. + +2008-03-17 Pedro Alves <pedro@codesourcery.com> + * linux-nat.c (linux_nat_filter_event): New, refactored from linux_nat_wait. (linux_nat_wait): Call linux_nat_filter_event. diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 9de9cf7..fc63fa3 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -1903,7 +1903,7 @@ stop_and_resume_callback (struct lwp_info *lp, void *data) } /* Check if we should go on and pass this event to common code. - Return the affected lpw if we are, or NULL otherwise. */ + Return the affected lwp if we are, or NULL otherwise. */ static struct lwp_info * linux_nat_filter_event (int lwpid, int status, int options) { |