Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was wondering if a call to Threa.Sleep on a thread that already acquiered a Monitor will release the lock before going to sleep:

object o = new object();
Montior.Enter(o);
Thread.Sleep(1000);
Monitor.Exit(o);

While the thread is suspended - can other thread acquire o?

share|improve this question
What makes you suspect that? – Albin Sunnanbo Feb 26 '12 at 15:55
4  
Calling, Thread.Sleep inside a lock is a recipe for an unresponsive application. You should perform the minimal amount of work inside a lock as possible, otherwise other threads waiting on the resource will pile up waiting to acquire the lock. – Jared Shaver Feb 26 '12 at 15:56

3 Answers

up vote 3 down vote accepted

No, the lock will not be released if you Sleep.

If you want to release it, use Monitor.Wait(o, timeout); further, you can also use this to signal from another thread - another thread can use Monitor.Pulse[All] (while holding the lock) to wake the waiting thread earlier than "timeout" (it will re-acquire the lock in the process, too).

Note that whenever using Enter/Exit, you should consider using try/finally too - or you risk not releasing the lock if an exception happens.

Example:

bool haveLock = false;
try {
    Monitor.Enter(ref haveLock);
     // important: Wait releases, waits, and re-acquires the lock
    bool wokeEarly = Monitor.Wait(o, timeout);
    if(wokeEarly) {...}
} finally {
    if(haveLock) Monitor.Exit(o);
}

Another thread could do:

lock(o) { Monitor.PulseAll(o); }

Which will nudge any threads currently in a Wait on that object (but does nothing if no objects were waking). Emphasis: the waiting thread still has to wait for the pulsing thread to release the lock, since it needs to re-acquire.

share|improve this answer
But the Pulse method will automatically (and atomically...) release the lock from the object, right – Pini Salim Feb 27 '12 at 6:40
@PiniSalim no, Pluse explicitly does not release the lock - the other (waiting) thread is moved to the ready queue, and obtains the lock and continues only when the lock is released by Monitor.Exit - i.e. when it leaves the lock(o) {...} part of the "Another thread could do:" example. – Marc Gravell Feb 27 '12 at 6:48
@PiniSalim or from MSDN, emphasis mine: "Upon receiving the pulse, the waiting thread is moved to the ready queue. When the thread that invoked Pulse releases the lock, the next thread in the ready queue (which is not necessarily the thread that was pulsed) acquires the lock." – Marc Gravell Feb 27 '12 at 6:49

No, between Enter and Exit, no other thread can take the lock whatever you do inbetween.

share|improve this answer

No, the thread won't release the lock before suspending/sleeping

and no other thread will be able to acquire o until the sleeping thread wakes up and releases the locked object

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.