diff options
-rw-r--r-- | gdb/gdbserver/ChangeLog | 3 | ||||
-rw-r--r-- | gdb/gdbserver/linux-low.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 873a513..82ba86d 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,6 +1,7 @@ -2008-12-13 Doug Evans <dje@google.com> +2009-01-05 Doug Evans <dje@google.com> * linux-low.c (linux_attach_lwp): Add some comments/fixmes. + (handle_extended_wait): Improve comment. 2008-12-13 Doug Evans <dje@google.com> diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index 3556204..3fa06ec 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -180,7 +180,7 @@ handle_extended_wait (struct process_info *event_child, int wstat) /* Normally we will get the pending SIGSTOP. But in some cases we might get another signal delivered to the group first. - If we do, be sure not to lose it. */ + If we do get another signal, be sure not to lose it. */ if (WSTOPSIG (status) == SIGSTOP) { if (stopping_threads) |