From: Tom Tromey Date: Tue, 5 Feb 2019 09:53:43 +0000 (-0700) Subject: Fix some typos in ravenscar-thread.c X-Git-Tag: gdb-8.3-release~197 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e397fd39c62c70900306fa206ebcae1a4853db8b;p=external%2Fbinutils.git Fix some typos in ravenscar-thread.c This fixes some typos I noticed in ravenscar-thread.c. gdb/ChangeLog 2019-02-15 Tom Tromey * ravenscar-thread.c: Fix some typos. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 37f505d..6929494 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2019-02-15 Tom Tromey + + * ravenscar-thread.c: Fix some typos. + 2019-02-15 Philippe Waroquiers Tom Tromey diff --git a/gdb/ravenscar-thread.c b/gdb/ravenscar-thread.c index bc7f9d6..32a4aa8 100644 --- a/gdb/ravenscar-thread.c +++ b/gdb/ravenscar-thread.c @@ -36,7 +36,7 @@ The typical situation is when debugging a bare-metal target over the remote protocol. In that situation, the system does not know - about high-level comcepts such as threads, only about some code + about high-level concepts such as threads, only about some code running on one or more CPUs. And since the remote protocol does not provide any handling for CPUs, the de facto standard for handling them is to have one thread per CPU, where the thread's ptid has @@ -44,14 +44,14 @@ 2 for the second one, etc). This module will make that assumption. This module then creates and maintains the list of threads based - on the list of Ada tasks, with one thread per Ada tasks. The convention + on the list of Ada tasks, with one thread per Ada task. The convention is that threads corresponding to the CPUs (see assumption above) - have a ptid_t of the form (PID, LWP, 0), which threads corresponding + have a ptid_t of the form (PID, LWP, 0), while threads corresponding to our Ada tasks have a ptid_t of the form (PID, 0, TID) where TID is the Ada task's ID as extracted from Ada runtime information. - Switching to a given Ada tasks (or its underlying thread) is performed - by fetching the registers of that tasks from the memory area where + Switching to a given Ada task (or its underlying thread) is performed + by fetching the registers of that task from the memory area where the registers were saved. For any of the other operations, the operation is performed by first finding the CPU on which the task is running, switching to its corresponding ptid, and then performing