Fix some typos in ravenscar-thread.c
authorTom Tromey <tromey@adacore.com>
Tue, 5 Feb 2019 09:53:43 +0000 (02:53 -0700)
committerTom Tromey <tromey@adacore.com>
Fri, 15 Feb 2019 20:53:42 +0000 (13:53 -0700)
This fixes some typos I noticed in ravenscar-thread.c.

gdb/ChangeLog
2019-02-15  Tom Tromey  <tromey@adacore.com>

* ravenscar-thread.c: Fix some typos.

gdb/ChangeLog
gdb/ravenscar-thread.c

index 37f505d00b26b23e89089efa73cf321abdc21b70..6929494e153d7d7e5df471acf376c2253c18c2bd 100644 (file)
@@ -1,3 +1,7 @@
+2019-02-15  Tom Tromey  <tromey@adacore.com>
+
+       * ravenscar-thread.c: Fix some typos.
+
 2019-02-15  Philippe Waroquiers  <philippe.waroquiers@skynet.be>
            Tom Tromey  <tromey@adacore.com>
 
index bc7f9d6c6581ab7746fcc358907c7b9ad223477f..32a4aa8d16aac9d590f676f6cbcf0f99f1228bef 100644 (file)
@@ -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
    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
This page took 0.037413 seconds and 4 git commands to generate.