diff options
author | Pedro Alves <palves@redhat.com> | 2008-03-17 14:54:07 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-03-17 14:54:07 +0000 |
commit | fa2c6a57ca78416ad3546b9aea4e2a0b77e78989 (patch) | |
tree | 633ebce64c7f1ed2942cd50408a1f37af12416f1 | |
parent | 02f3fc280a728a64b90a4a8e42f908c14e7bff45 (diff) | |
download | fsf-binutils-gdb-fa2c6a57ca78416ad3546b9aea4e2a0b77e78989.zip fsf-binutils-gdb-fa2c6a57ca78416ad3546b9aea4e2a0b77e78989.tar.gz fsf-binutils-gdb-fa2c6a57ca78416ad3546b9aea4e2a0b77e78989.tar.bz2 |
* linux-nat.c (linux_nat_filter_event): Fix comment typo.
-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) { |