Operator Reference
unlock_mutex (Operator)
unlock_mutex
— Unlock a mutex synchronization object.
Signature
unlock_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
- Multithreading type: independent (runs in parallel even with 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.
Possible Predecessors
Possible Successors
lock_mutex
,
try_lock_mutex
,
clear_mutex
Module
Foundation