diff options
author | Michael Snyder <msnyder@vmware.com> | 2005-12-23 20:51:35 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2005-12-23 20:51:35 +0000 |
commit | 3d450bdd5f5e5d6c7d124edcc27d669230d08408 (patch) | |
tree | df1dfabfde309ff143d4a6c75b30381ba99cabe5 | |
parent | c02a867d9133d264d2eceb1e5f06bfbb87c840e3 (diff) | |
download | gdb-3d450bdd5f5e5d6c7d124edcc27d669230d08408.zip gdb-3d450bdd5f5e5d6c7d124edcc27d669230d08408.tar.gz gdb-3d450bdd5f5e5d6c7d124edcc27d669230d08408.tar.bz2 |
2005-12-23 Michael Snyder <msnyder@redhat.com>
* inf-ptrace.c: Spelling correction, comment.
* inf-ttrace.c: Ditto.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/inf-ptrace.c | 2 | ||||
-rw-r--r-- | gdb/inf-ttrace.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9361ba8..010441c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2005-12-23 Michael Snyder <msnyder@redhat.com> + + * inf-ptrace.c: Spelling correction, comment. + * inf-ttrace.c: Ditto. + 2005-12-23 Eli Zaretskii <eliz@gnu.org> * tui/tui-file.c: diff --git a/gdb/inf-ptrace.c b/gdb/inf-ptrace.c index 83782bd..9e2ea84 100644 --- a/gdb/inf-ptrace.c +++ b/gdb/inf-ptrace.c @@ -173,7 +173,7 @@ inf_ptrace_mourn_inferior (void) /* Wait just one more time to collect the inferior's exit status. Do not check whether this succeeds though, since we may be dealing with a process that we attached to. Such a process will - only report its exit status to its origional parent. */ + only report its exit status to its original parent. */ waitpid (ptid_get_pid (inferior_ptid), &status, 0); unpush_target (ptrace_ops_hack); diff --git a/gdb/inf-ttrace.c b/gdb/inf-ttrace.c index f488daf..e9dcda8 100644 --- a/gdb/inf-ttrace.c +++ b/gdb/inf-ttrace.c @@ -952,7 +952,7 @@ inf_ttrace_wait (ptid_t ptid, struct target_waitstatus *ourstatus) if (inf_ttrace_num_lwps == 0) { /* Now that we're going to be multi-threaded, add the - origional thread to the list first. */ + original thread to the list first. */ add_thread (ptid_build (tts.tts_pid, tts.tts_lwpid, 0)); inf_ttrace_num_lwps++; } |