Boost logo

Boost Users :

Subject: Re: [Boost-users] condition_variable
From: Nikolai N Fetissov (nikolai-boost_at_[hidden])
Date: 2009-12-10 13:25:32


>
> Why is it that since we already hold a mutex in the requesting thread, the
> thread handling the response can successfully lock that mutex too? Does
> the
> condition.wait call set something in the lock?
>
> Thanks,
>

Alessandro

The idea of wait on a condition variable is to atomically
release the mutex and enter some sort of sleep mode, which is
later interrupted by a wake-up from a different thread.
At that point the mutex is re-aquired.
So, yes, condition.wait() unlocks the mutex and waits for
notification, then locks the mutex again.

--
 Nikolai

Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net