/// <summary>
 /// Creates a <see cref="TinyLock"/>
 /// </summary>
 public TinyLock()
 {
     m_lock    = Unlocked;
     m_release = new TinyLockRelease(this);
 }
 /// <summary>
 /// Creates a <see cref="TinyLock"/>
 /// </summary>
 public TinyLock()
 {
     m_lock = Unlocked;
     m_release = new TinyLockRelease(this);
 }