Jump to content

Mutex semaphore: Difference between revisions

From EDM2
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 ..."
(No difference)

Revision as of 05:38, 14 November 2017

(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.