Mutex
Mutex (Mutual
Exclusion Object)
Hacker Definition
A programming concept that serializes
access to a shared resource, such as a file or data in memory. Frequently, this
serialization is necessary to protect the resource from being changed in an
inconsistent manner. Poorly designed Mutual Exclusion Objects are targets of
crackers looking for a possible path for an attack.
