About 102,000 results
Open links in new tab
  1. Mutex vs Semaphore - GeeksforGeeks

    Apr 15, 2026 · Misconception of Mutex and Semaphore There is an ambiguity between binary semaphore and mutex. We might …

  2. multithreading - What is a mutex? - Stack Overflow

    Aug 29, 2008 · A mutex is a programming concept that is frequently used to solve multi-threading problems. My question to the …

  3. Mutex Class (System.Threading) | Microsoft Learn

    The Mutex class enforces thread identity, so a mutex can be released only by the thread that acquired it. By contrast, the Semaphore …

  4. Lock (computer science) - Wikipedia

    In computer science, a lock or mutex (from mutual exclusion) is a synchronization primitive that prevents state from being modified or …

  5. std::mutex - cppreference.com

    The mutex class is a synchronization primitive that can be used to protect shared data from being simultaneously accessed by …

  6. What is a Mutex? | Mutexes & Locks - System Overflow

    What is a Mutex? Definition A mutex (mutual exclusion) is like a token that passes from one thread to another, allowing one thread at …

  7. pthread_mutex_init (3) - Linux manual page - man7.org

    The mutex must be unlocked on entrance. In the LinuxThreads implementation, no resources are associated with mutex objects, …

  8. What is mutual exclusion (mutex) in computer programming?

    May 9, 2023 · Learn how, in computer programming, a mutual exclusion (mutex) object returns consistent and predictable data when …

  9. What Is a Mutex? | Baeldung on Computer Science

    May 5, 2023 · Mutex is one of the simplest solutions to solve this issue. In the following tutorial, we’re going to explain how it works …

  10. A mutex is technically a type of lock; there are others, but we focus just on mutexes When you create a mutex, it is initially unlocked …