Index: doc/theses/thierry_delisle_PhD/thesis/glossary.tex
===================================================================
--- doc/theses/thierry_delisle_PhD/thesis/glossary.tex	(revision 62424af292b77c62439ac8a7107e71e4bc01b55b)
+++ doc/theses/thierry_delisle_PhD/thesis/glossary.tex	(revision 4a2d728a59affeff5fc1c5192c46918d994c6782)
@@ -17,5 +17,5 @@
 {name={Thread},text={thread}}
 {
-Abstract object representing a unit of work. Systems will offer one or more concrete implementations of this concept (\eg \gls{kthrd}, \gls{job}), however, most of the concepts of scheduling are independent of the particular implementations of the work representation. For this reason, this document uses the term \Gls{at} to mean any representation and not one in particular.
+A thread is an independent sequential execution path through a program. Each thread is scheduled for execution separately and independently from other threads. A thread must have its own stack to save its state when it is scheduled. Systems offer one or more concrete implementations of this concept, \eg \gls{kthrd}, \gls{job}, task. However, most of the concepts of scheduling are independent of the particular implementations of the thread representation. For this reason, this document uses the term \gls{at} to mean any of these representation that meets the general definition.
 
 \textit{Synonyms : Tasks, Jobs, Blocks.}
@@ -25,5 +25,5 @@
 {name={Processor},text={processor}}
 {
-Entity that executes the \glspl{at}, \ie the resource being scheduled by the scheduler. In kernel level threading, \ats are kernel threads and \procs are the \glspl{hthrd} on which the kernel threads are scheduled. In user-level threading and in thread pools, \procs are kernel threads.
+Entity that executes a \gls{at}, \ie the resource being scheduled by the scheduler. In kernel-level threading, \ats are kernel threads and \procs are the \glspl{hthrd} on which the kernel threads are scheduled. In user-level threading and thread pools, \procs are kernel threads.
 
 \textit{Synonyms : Server, Worker.}
@@ -33,11 +33,11 @@
 {name={Ready Queue}, text={ready-queue}}
 {
-Data structure holding \ats that are ready to be \glslink{atrun}{run}. Often a \glsxtrshort{fifo} queue, but can take many different forms, \eg binary trees are also common.
+Data structure holding \ats that are ready to \glslink{atrun}{run}, but currently all the processors are in use. Often a \glsxtrshort{fifo} queue for fairness, but can take many different forms, \eg binary tree and priority queue are also common.
 }
 
 \longnewglossaryentry{uthrding}
-{name={User-Level Threading},text={user-level threading}}
+{name={User-Level \Gls{at}ing},text={user-level threading}}
 {
-Threading model where a scheduler runs in users space and maps threads managed and created inside the user-space onto \glspl{kthrd}.
+\Gls{at}ing model where a scheduler runs in users space and maps threads managed and created inside the user-space onto \glspl{kthrd}.
 
 \textit{Synonyms : User threads, Lightweight threads, Green threads, Virtual threads, Tasks.}
@@ -47,5 +47,5 @@
 {name={Remote Memory Reference},text={remote memory reference}}
 {
-Reference to an address in memory that is considered \newterm{remote}, as opposed to \emph{local}. This can mean for example: a cache line that is in a cache not shared by the current \gls{hthrd}, a block of memory that belons to a different CPU socket in a \glsxtrshort{numa} context, etc.
+A memory reference to an address not in the current \gls{hthrd}'s L1 or L2 cache is a remote reference. L1 and L2 cache references are considered \emph{local}. For example, a cache line that must be updated from the L3 cache or from any cache on another socket, or from RAM in a \glsxtrshort{numa} context.
 }
 
@@ -53,15 +53,15 @@
 
 \longnewglossaryentry{hthrd}
-{name={Hardware Thread},text={hardware thread}}
+{name={Hardware \Gls{at}},text={hardware thread}}
 {
-Threads representing the underlying hardware directly, \eg the CPU core, or hyper-thread if the hardware supports multiple threads of execution per core. The number of hardware threads is considered to be always fixed to a specific number determined by the hardware.
+\Gls{at}s representing the underlying hardware, \eg a CPU core or hyper-thread, if the hardware supports multiple threads of execution per core. The maximum number of hardware threads is fixed on any given computer.
 
-\textit{Synonyms : Core, Processing Unit, CPU.}
+\textit{Synonyms : Core, Hyper-\Gls{at}, Processing Unit, CPU.}
 }
 
 \longnewglossaryentry{kthrd}
-{name={Kernel-Level Thread},text={kernel-level thread}}
+{name={Kernel-Level \Gls{at}},text={kernel-level thread}}
 {
-Threads created and managed inside kernel-space. Each thread has its own stack and its own thread of execution. Kernel-level threads are owned, managed and scheduled by the underlying operating system.
+\Gls{at}s created and managed inside kernel space. Each kernel thread has its own stack and its own thread of execution. Kernel-level threads are owned, managed and scheduled by the underlying operating system.
 
 \textit{Synonyms : OS threads, Hardware threads, Physical threads.}
@@ -71,5 +71,5 @@
 {name={Fiber},text={fiber}}
 {
-Fibers are non-preemptive user-level threads. They share most of the caracteristics of user-level threads except that they cannot be preempted by another fiber.
+Fibers are non-preemptive user-level threads. They share most of the characteristics of user-level threads except that they cannot be preempted by another fiber.
 
 \textit{Synonyms : Tasks.}
@@ -85,7 +85,7 @@
 
 \longnewglossaryentry{pool}
-{name={Thread Pool},text={thread-pool}}
+{name={\Gls{at} Pool},text={thread-pool}}
 {
-Group of homogeneuous threads that loop executing units of works. Often executing \glspl{jobs}.
+Group of homogeneous threads that loop executing units of works. Often executing \glspl{jobs}.
 
 \textit{Synonyms : Executor.}
@@ -103,5 +103,5 @@
 {name={Scheduling a \gls{at}}}
 {
-Scheduling a \at refers to the act of notifying the scheduler that a task is ready to be run. When representing the scheduler as a queue of tasks, scheduling is the act of pushing a task onto the end of the queue. This does not necessarily mean the task will ever be allocated CPU time (\gls{atrun}), for example, if the system terminates abruptly, scheduled \glspl{at} will probably never run.
+Scheduling a \at refers to notifying the scheduler that a \at is ready to run. When representing the scheduler as a queue of \ats, scheduling is the act of pushing a \at onto the end of the queue. This operation does not necessarily mean the \at is guaranteed CPU time (\gls{atrun}), \eg if the program terminates abruptly, scheduled \glspl{at} never run.
 
 \textit{Synonyms : Unparking.}
@@ -111,5 +111,5 @@
 {name={Running a \gls{at}}}
 {
-Running a \at refers to the act of allocating CPU time to a task that is ready to run. When representing the scheduler as a queue of tasks, running is the act of popping a task from the front of the queue and putting it onto a \gls{proc}. The \gls{at} can then accomplish some or all of the work it is programmed to do.
+Running a \at refers to allocating CPU time to a \at that is ready to run. When representing the scheduler as a queue of \ats, running is the act of popping a \at from the front of the queue and putting it onto a \gls{proc}. The \gls{at} can then accomplish some or all of the work it is programmed to do.
 
 \textit{Synonyms : None.}
@@ -117,7 +117,7 @@
 
 \longnewglossaryentry{atmig}
-{name={Migration of \glspl{at}}}
+{name={\Glspl{at} Migration}}
 {
-Migration refers to the idea of an \gls{at} running on a different \proc than the last time it was run. It is generally preferable to minimise migration as it incurs cost but any load balancing among \proc requires some amount of migration.
+Migration refers to the idea of an \gls{at} running on a different \proc than the last time it was run. It is generally preferable to minimize migration as it incurs cost but any load balancing among \proc requires some amount of migration.
 
 \textit{Synonyms : None.}
@@ -133,7 +133,7 @@
 
 \longnewglossaryentry{atblock}
-{name={Blocking an \gls{at}}}
+{name={\Gls{at} Blocking}}
 {
-Blocking an abstract task refers to the act of taking a task that us running on a CPU off the CPU. Unless no other task is ready, this action is generally immediately followed by running an other task.
+\Gls{at} blocking means taking a running \at off a CPU. Unless no other \at is ready, this action is immediately followed by running another \at.
 
 \textit{Synonyms : Parking.}
@@ -143,5 +143,5 @@
 {name={Running to completion}}
 {
-Running to completion refers to the entire sequence of : being scheduled, running and blocking, for a given task.
+Running to completion refers to the entire sequence of : being scheduled, running and blocking, for a given \at.
 
 See also \gls{atsched}, \gls{atrun}, \gls{atblock}
@@ -153,5 +153,5 @@
 {name={System Load},text={load}}
 {
-The System Load refers to the rate at which \glspl{at} are \glslink{atsched}{scheduled} versus the rate at which they are \glslink{atrun}{run}. When \glspl{at} are being scheduled faster than they are run, the system is considered \emph{overloaded}. When \glspl{at} are being run faster than they are scheduled, the system is considered \emph{underloaded}. Conrrespondingly, if both rates are equal, the system is considered \emph{loaded}. Note that the system is considered loaded only of the rate at which \glspl{at} are scheduled/run is non-zero, otherwise the system is empty, it has no load.
+The system load refers to the rate at which \glspl{at} are \glslink{atsched}{scheduled} versus the rate at which they are \glslink{atrun}{run}. When \glspl{at} are being scheduled faster than they are run, the system is considered \emph{overloaded}. When \glspl{at} are being run faster than they are scheduled, the system is considered \emph{underloaded}. Correspondingly, if both rates are equal, the system is considered \emph{loaded}. Note the system is considered loaded only if the rate at which \glspl{at} are scheduled/run is non-zero, otherwise the system is empty, \ie it has no load.
 
 \textit{Synonyms : CPU Load, System Load.}
