diff options
author | Michael Snyder <msnyder@vmware.com> | 2011-02-08 22:35:57 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2011-02-08 22:35:57 +0000 |
commit | fd62cb89c514e0c0c366147f1b3e88bdf97bb510 (patch) | |
tree | fff989805cd43f36efb60d2a41b8a75e85d8290a /gdb | |
parent | 2dde194857729c4f436395683e233c203ae768ab (diff) | |
download | gdb-fd62cb89c514e0c0c366147f1b3e88bdf97bb510.zip gdb-fd62cb89c514e0c0c366147f1b3e88bdf97bb510.tar.gz gdb-fd62cb89c514e0c0c366147f1b3e88bdf97bb510.tar.bz2 |
2011-02-08 Michael Snyder <msnyder@vmware.com>
* linux-nat.c (linux_nat_filter_event): Fix typo in comment.
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 8a78082..3dc994f 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2011-02-08 Michael Snyder <msnyder@vmware.com> + + * linux-nat.c (linux_nat_filter_event): Fix typo in comment. + 2011-02-08 Jan Kratochvil <jan.kratochvil@redhat.com> * i386-tdep.c (i386_process_record): Rename l suffixes to d suffixes diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index a855219..cd88df8 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -3064,7 +3064,7 @@ linux_nat_filter_event (int lwpid, int status, int options) /* Make sure we don't report an event for the exit of an LWP not in our list, i.e. not part of the current process. This can happen - if we detach from a program we original forked and then it + if we detach from a program we originally forked and then it exits. */ if (!WIFSTOPPED (status) && !lp) return NULL; |