mutex
MuTeX
(tool, music)ftp://nic.stolaf.edu/pub/mutex/MuTeX.tar.Z.
mutex
(parallel)If multiple threads or tasks are blocked on a locked mutexobject, the one to take it and proceed when it becomesavailable is determined by some type of scheduling algorithm.For example, in a priority based system, the highest priorityblocked task will acquire the mutex and proceed. Anothercommon set-up is put blocked tasks on a first-in-first-outqueue.
See also: priority inversion
mutex
(1) (MUTually EXclusive) A programming flag used to grab and release an object. When data are acquired that cannot be shared or processing is started that cannot be performed simultaneously elsewhere in the system, the mutex is set to "lock," which blocks other attempts to use it. The mutex is set to "unlock" when the data are no longer needed or the routine is finished. See flag.(2) (MUsic TEX) A package of macros for the TeX typesetting system that supports musical notation.