[c69adb7] | 1 | \makeglossaries
|
---|
[9a8dfcc] | 2 |
|
---|
| 3 | \longnewglossaryentry{callsite-locking}
|
---|
| 4 | {name={callsite-locking}}
|
---|
| 5 | {
|
---|
| 6 | Locking done by the calling routine. With this technique, a routine calling a monitor routine will aquire the monitor \emph{before} making the call to the actuall routine.
|
---|
| 7 | }
|
---|
| 8 |
|
---|
| 9 | \longnewglossaryentry{entry-point-locking}
|
---|
| 10 | {name={entry-point-locking}}
|
---|
| 11 | {
|
---|
| 12 | Locking done by the called routine. With this technique, a monitor routine called by another routine will aquire the monitor \emph{after} entering the routine body but prior to any other code.
|
---|
| 13 | }
|
---|
| 14 |
|
---|
[3364962] | 15 | \longnewglossaryentry{bulk-acq}
|
---|
| 16 | {name={bulk-acquiring}}
|
---|
[fe84230] | 17 | {
|
---|
| 18 | Implicitly acquiring several monitors when entering a monitor.
|
---|
| 19 | }
|
---|
| 20 |
|
---|
[3364962] | 21 | \longnewglossaryentry{multi-acq}
|
---|
| 22 | {name={multiple-acquisition}}
|
---|
| 23 | {
|
---|
| 24 | Any locking technique which allow any single thread to acquire a lock multiple times.
|
---|
| 25 | }
|
---|
| 26 |
|
---|
[03bb816] | 27 | \longnewglossaryentry{mon-ctx}
|
---|
| 28 | {name={monitor context}}
|
---|
| 29 | {
|
---|
| 30 | The state of the current thread regarding which monitors are owned.
|
---|
| 31 | }
|
---|
| 32 |
|
---|
[9a8dfcc] | 33 |
|
---|
[c69adb7] | 34 | \longnewglossaryentry{uthread}
|
---|
| 35 | {name={user-level thread}}
|
---|
| 36 | {
|
---|
| 37 | Threads created and managed inside user-space. Each thread has its own stack and its own thread of execution. User-level threads are insisible to the underlying operating system.
|
---|
| 38 |
|
---|
| 39 | \textit{Synonyms : User threads, Lightweight threads, Green threads, Virtual threads, Tasks.}
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | \longnewglossaryentry{kthread}
|
---|
| 43 | {name={kernel-level thread}}
|
---|
| 44 | {
|
---|
| 45 | 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.
|
---|
| 46 |
|
---|
| 47 | \textit{Synonyms : OS threads, Hardware threads, Physical threads.}
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | \longnewglossaryentry{fiber}
|
---|
| 51 | {name={fiber}}
|
---|
| 52 | {
|
---|
| 53 | Fibers are non-preemptive user-level threads. They share most of the caracteristics of user-level threads except that they cannot be preempted by an other fiber.
|
---|
| 54 |
|
---|
| 55 | \textit{Synonyms : Tasks.}
|
---|
| 56 | }
|
---|
| 57 |
|
---|
| 58 | \longnewglossaryentry{job}
|
---|
| 59 | {name={job}}
|
---|
| 60 | {
|
---|
| 61 | Unit of work, often send to a thread pool or worker pool to be executed. Has neither its own stack or its own thread of execution.
|
---|
| 62 |
|
---|
| 63 | \textit{Synonyms : Tasks.}
|
---|
| 64 | }
|
---|
[a9aab60] | 65 |
|
---|
[d073e3c] | 66 | \longnewglossaryentry{pool}
|
---|
| 67 | {name={thread-pool}}
|
---|
| 68 | {
|
---|
| 69 | Group of homogeneuous threads that loop executing units of works after another.
|
---|
| 70 |
|
---|
| 71 | \textit{Synonyms : }
|
---|
| 72 | }
|
---|
| 73 |
|
---|
[a9aab60] | 74 | \longnewglossaryentry{cfacluster}
|
---|
| 75 | {name={cluster}}
|
---|
| 76 | {
|
---|
| 77 | TBD...
|
---|
| 78 |
|
---|
| 79 | \textit{Synonyms : None.}
|
---|
| 80 | }
|
---|
| 81 |
|
---|
| 82 | \longnewglossaryentry{cfacpu}
|
---|
| 83 | {name={processor}}
|
---|
| 84 | {
|
---|
| 85 | TBD...
|
---|
| 86 |
|
---|
| 87 | \textit{Synonyms : None.}
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 | \longnewglossaryentry{cfathread}
|
---|
| 91 | {name={thread}}
|
---|
| 92 | {
|
---|
| 93 | TBD...
|
---|
| 94 |
|
---|
| 95 | \textit{Synonyms : None.}
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | \longnewglossaryentry{preemption}
|
---|
| 99 | {name={preemption}}
|
---|
| 100 | {
|
---|
| 101 | TBD...
|
---|
| 102 |
|
---|
| 103 | \textit{Synonyms : None.}
|
---|
| 104 | }
|
---|
| 105 |
|
---|
| 106 | \newacronym{tls}{TLS}{Thread Local Storage}
|
---|
| 107 | \newacronym{api}{API}{Application Program Interface}
|
---|
| 108 | \newacronym{raii}{RAII}{Ressource Acquisition Is Initialization}
|
---|
[d67cdb7] | 109 | \newacronym{numa}{NUMA}{Non-Uniform Memory Access}
|
---|