unlock_mutex🔗
Short description🔗
unlock_mutex — Unlock a mutex synchronization object.
Signature🔗
unlock_mutex( mutex MutexHandle )
Description🔗
unlock_mutex unlocks the mutex object given by MutexHandle.
The mutex must have been locked by the calling thread. Attempting to unlock
a mutex that is not locked by the calling thread is undefined behavior.
Execution information🔗
Execution information
-
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
-
Multithreading scope: global (may be called from any thread).
-
Processed without parallelization.
Parameters🔗
MutexHandle (input_control) mutex → (handle)
Mutex synchronization object.
Result🔗
If the mutex handle is valid, the operator unlock_mutex returns
2 (H_MSG_TRUE). If necessary, an exception is raised.
Combinations with other operators🔗
Combinations
Possible predecessors
Possible successors
Module🔗
Foundation