This repository has been archived by the owner on Jun 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglossary.tex
102 lines (101 loc) · 2.75 KB
/
glossary.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
% GLOSSARIES
\newglossaryentry{preemption}
{
name=preemption,
description={Interrupting an already running task to execute another task}
}
\newglossaryentry{task}
{
name=task,
description={A unit of work executed by the processor}
}
\newglossaryentry{deadline}
{
name=deadline,
description={The time (relative or absolute) a task needs to finish execution before}
}
\newglossaryentry{responsetime}
{
name=response time,
description={The time it takes from when a task is scheduled until it has finished
execution, including preemptions}
}
\newglossaryentry{scheduling}
{
name=scheduling,
description={The act of assigning processing time to tasks in an orderly fashion}
}
\newglossaryentry{schedulable}
{
name=schedulable,
description={A system is schedulable if all tasks running are meeting their
deadlines and they are not utilizing more than 100\% of the processing time
at any point}
}
\newglossaryentry{schedulability analysis}
{
name=schedulability analysis,
description={The act of verifying if the system is schedulable or not}
}
\newglossaryentry{et}
{
name=ET,
description={Execution time. The time it takes for a task to finish its execution
without any preemptions}
}
\newglossaryentry{wcet}
{
name=WCET,
description={Worst-case execution time. The maximum possible time it will
take a task to finish execution without any preemptions}
}
\newglossaryentry{wcrt}
{
name=WCRT,
description={Worst-case response time. Similar to WCET but including possible
preemptions}
}
\newglossaryentry{context switch}
{
name=context switch,
description={Changing the execution from a running task to a new task}
}
\newglossaryentry{priority inversion}
{
name=priority inversion,
description={A higher priority task is unable to continue execution because
it is waiting for a lower priority task to finish its execution}
}
\newglossaryentry{critical section}
{
name=priority inversion,
description={A section where a shared resource is subjected to mutual exclusion.
I.e.\ it is claimed temporarily by a task and no other tasks are allowed to claim
it until the claimant releases its claim}
}
\newglossaryentry{blocking}
{
name=blocking,
description={A task waiting to claim a resource that is currently claimed
by another task is \emph{blocked}}
}
\newglossaryentry{inter-arrival-time}
{
name=inter-arrival time,
description={How frequent an aperiodic task is expected to be executed}
}
\newglossaryentry{mcu}
{
name=MCU,
description={Short for \emph{Microcontroller unit}}
}
\newglossaryentry{dwarf}
{
name=DWARF,
description={Debugging format standard}
}
\newglossaryentry{ir}
{
name=IR,
description={Intermediate representation}
}