SIL.Utils.GlobalMutex.GlobalMutex C# (CSharp) Method

GlobalMutex() public method

Initializes a new instance of the GlobalMutex class.
public GlobalMutex ( string name ) : System
name string
return System
		public GlobalMutex(string name)
		{
			m_name = name;
#if __MonoCS__
			m_adapter = new LinuxGlobalMutexAdapter(name);
#else
			m_adapter = new WindowsGlobalMutexAdapter(name);
#endif
		}