diff options
author | Pedro Alves <palves@redhat.com> | 2009-10-09 01:01:22 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2009-10-09 01:01:22 +0000 |
commit | 62f33d08c88ab3cb27e4115fbc5645bfbcf87d0d (patch) | |
tree | 417b2386573e28b5f77d96b0f1d8d1e8dca6464a /gdb | |
parent | 3cdd9356b1e2c0ffdf3cfb7aa06123542a93ce88 (diff) | |
download | gdb-62f33d08c88ab3cb27e4115fbc5645bfbcf87d0d.zip gdb-62f33d08c88ab3cb27e4115fbc5645bfbcf87d0d.tar.gz gdb-62f33d08c88ab3cb27e4115fbc5645bfbcf87d0d.tar.bz2 |
* corelow.c (add_to_thread_list): Fix typo.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rw-r--r-- | gdb/corelow.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5589ea1..18bcaaa 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -9,6 +9,8 @@ we find that the core had no .reg/NN sections. (get_core_register_section): Handle Solaris cores with fake pids. + * corelow.c (add_to_thread_list): Fix typo. + 2009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com> PR gdb/10457 diff --git a/gdb/corelow.c b/gdb/corelow.c index fa2431f..d05dbf2 100644 --- a/gdb/corelow.c +++ b/gdb/corelow.c @@ -260,7 +260,7 @@ add_to_thread_list (bfd *abfd, asection *asect, void *reg_sect_arg) lwpid = merged_pid >> 16; /* This can happen on solaris core, for example, if we don't - find a NT_PRSTATUS note in the core, but do find NT_LWPSTATUS + find a NT_PSTATUS note in the core, but do find NT_LWPSTATUS notes. */ if (pid == 0) { |