Changeset df27752
- Timestamp:
- Jun 18, 2023, 9:41:21 PM (17 months ago)
- Branches:
- master
- Children:
- 6d18ddb
- Parents:
- 739bd7b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/colby_parsons_MMAth/glossary.tex
r739bd7b rdf27752 37 37 \newabbreviation{toctou}{TOCTOU}{\Newterm{time-of-check to time-of-use}} 38 38 39 \newglossaryentry{actor} 40 { 39 \newglossaryentry{actor}{ 41 40 name=actor, 42 41 description={A basic unit of an actor system that can store local state and send messages to other actors.} 43 42 } 44 43 45 \newglossaryentry{gulp} 46 { 47 name=gulp,44 \newglossaryentry{gulp}{ 45 name={gulp}, 46 first={\Newterm{gulp}}, 48 47 description={Move the contents of message queue to a local queue of the executor thread using a single atomic instruction.} 49 48 } 50 49 51 \newglossaryentry{impl_concurrency} 52 { 50 \newglossaryentry{impl_concurrency}{ 53 51 name=implicit concurrency, 52 first={\Newterm{implicit concurrency}}, 54 53 description={A class of concurrency features that abstract away explicit thread synchronization and mutual exclusion.} 55 54 } 56 55 57 \newglossaryentry{actor_model} 58 { 56 \newglossaryentry{actor_model}{ 59 57 name=actor model, 58 first={\Newterm{actor model}}, 60 59 description={A concurrent computation model, where tasks are broken into units of work that are distributed to actors in the form of messages.} 61 60 } 62 61 63 \newglossaryentry{actor_system} 64 { 62 \newglossaryentry{actor_system}{ 65 63 name=actor system, 64 first={\Newterm{actor system}}, 66 65 description={An implementation of the actor model.} 67 66 } 68 67 69 \newglossaryentry{synch_multiplex} 70 { 68 \newglossaryentry{synch_multiplex}{ 71 69 name=synchronous multiplexing, 70 first={\Newterm{synchronous multiplexing}}, 72 71 description={synchronization on some subset of a set of resources.} 73 72 }
Note: See TracChangeset
for help on using the changeset viewer.