Jump to content

Mutex semaphore

From EDM2
Revision as of 05:38, 14 November 2017 by Martini (talk | contribs) (Created page with "(Mutual exclusion semaphore). A semaphore that enables threads to serialize their access to resources. Only the thread that currently owns the mutex semaphore can gain access ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

(Mutual exclusion semaphore). A semaphore that enables threads to serialize their access to resources. Only the thread that currently owns the mutex semaphore can gain access to the resource, thus preventing one thread from interrupting operations being performed by another.