RTMutex OpenExisting Method IntervalZero RTX Managed Code
Opens an existing named mutex.

Namespace:  RTX.Threading
Assembly:  IntervalZero.RTX (in IntervalZero.RTX.dll) Version: 12.0.0.0 (12.0.0.0)

Syntax

public static RTMutex OpenExisting(
	string name
)

Return Value

Type: RTMutex
A RTMutex object that represents a named system mutex.
Exceptions

Remarks

The OpenExisting method attempts to open an existing named mutex. If the system mutex does not exist, this method throws an exception instead of creating the system object. Two calls to this method with the same value for name do not necessarily return the same RTMutex object, even though they represent the same named system mutex.
See Also