-
Notifications
You must be signed in to change notification settings - Fork 52
Mutex
Sangmin Seo edited this page Mar 2, 2017
·
1 revision
Mutex is a synchronization method to support mutual exclusion between ULTs. When more than one ULT competes for locking the same mutex, only one ULT is guaranteed to lock the mutex. Other ULTs are blocked and wait until the ULT which locked the mutex unlocks it. When the mutex is unlocked, another ULT is able to lock the mutex again.