mutex - définition. Qu'est-ce que mutex
Diclib.com
Dictionnaire ChatGPT
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:

Traduction et analyse de mots par intelligence artificielle ChatGPT

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

Qu'est-ce (qui) est mutex - définition

SYNCHRONIZATION MECHANISM FOR ENFORCING LIMITS ON ACCESS TO A RESOURCE
Mutex; Advisory lock; Mandatory lock; Lock (software engineering); Lock (computer); Lock variable; Lock pattern; Fine-grained locking; Locking (computer science); Lock contention; Atomic lock

mutual exclusion         
  • ''i'' + 1}} not being removed.
  • the cycle of sections of a single process
PROPERTY OF CONCURRENCY CONTROL, WHICH IS INSTITUTED FOR THE PURPOSE OF PREVENTING RACE CONDITIONS
Mutex lock; Mutually-exclusive; Mutual exclusion rule; MutEx
<parallel, operating system> (Or "mutex", plural: "mutexes") A collection of techniques for sharing resources so that different uses do not conflict and cause unwanted interactions. One of the most commonly used techniques for mutual exclusion is the semaphore. (1995-04-08)
Mutual exclusion         
  • ''i'' + 1}} not being removed.
  • the cycle of sections of a single process
PROPERTY OF CONCURRENCY CONTROL, WHICH IS INSTITUTED FOR THE PURPOSE OF PREVENTING RACE CONDITIONS
Mutex lock; Mutually-exclusive; Mutual exclusion rule; MutEx
In computer science, mutual exclusion is a property of concurrency control, which is instituted for the purpose of preventing race conditions. It is the requirement that one thread of execution never enters a critical section while a concurrent thread of execution is already accessing said critical section, which refers to an interval of time during which a thread of execution accesses a shared resource or shared memory.
MuTeX         
  • ''i'' + 1}} not being removed.
  • the cycle of sections of a single process
<tool, music> An extension of TeX for typesetting music. mutex/MuTeX.tar.Z">ftp://nic.stolaf.edu/pub/mutex/MuTeX.tar.Z. (1995-02-06)

Wikipédia

Lock (computer science)

In computer science, a lock or mutex (from mutual exclusion) is a synchronization primitive: a mechanism that enforces limits on access to a resource when there are many threads of execution. A lock is designed to enforce a mutual exclusion concurrency control policy, and with a variety of possible methods there exists multiple unique implementations for different applications.