Why cannot I acquire exclusive lock? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T13:25:23Z http://stackoverflow.com/feeds/question/745173 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/745173/why-cannot-i-acquire-exclusive-lock 2 Why cannot I acquire exclusive lock? Prankster 2009-04-13T20:04:37Z 2009-04-13T20:07:30Z <p>The following program prints:</p> <pre><code>Entered 3 Entered 4 Wait for Exited messages Exited 3 Exited 4 </code></pre> <p>Meaning that it cannot acquire an exclusive lock on resource. Why?</p> <pre><code>public class Worker { public void DoIt(object resource) { Monitor.Enter(resource); Console.WriteLine("Entered " + Thread.CurrentThread.ManagedThreadId); Thread.Sleep(3000); Monitor.Exit(resource); Console.WriteLine("Exited " + Thread.CurrentThread.ManagedThreadId); } } class Program { struct Resource { public int A; public int B; } static void Main(string[] args) { Resource resource; resource.A = 0; resource.B = 1; var a = new Worker(); var b = new Worker(); var t1 = new Thread(() =&gt; a.DoIt(resource)); var t2 = new Thread(() =&gt; b.DoIt(resource)); t1.Start(); t2.Start(); Console.WriteLine("Wait for Exited messages"); Console.ReadLine(); } } </code></pre> http://stackoverflow.com/questions/745173/why-cannot-i-acquire-exclusive-lock/745181#745181 7 Answer by Anton Tykhyy for Why cannot I acquire exclusive lock? Anton Tykhyy 2009-04-13T20:07:30Z 2009-04-13T20:07:30Z <p>Your <code>Resource</code> is a struct. It is boxed when passed to <code>DoIt</code>, so each call to <code>DoIt</code> locks a different object. Change <code>Resource</code> to be a class.</p>