Sleep while holding a boost::interprocess::scoped_lock causes it to be never released - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T10:27:40Zhttp://stackoverflow.com/feeds/question/977265http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/977265/sleep-while-holding-a-boostinterprocessscopedlock-causes-it-to-be-never-rele1Sleep while holding a boost::interprocess::scoped_lock causes it to be never releasedPedro d'Aquino2009-06-10T18:07:07Z2009-07-09T20:57:55Z
<p>Hi,</p>
<p>I'm doing IPC on <strong>Linux</strong> using <code>boost::interprocess::shared_memory_object</code> as per <a href="http://www.boost.org/doc/libs/1%5F38%5F0/doc/html/interprocess/synchronization%5Fmechanisms.html" rel="nofollow">the reference</a> (anonymous mutex example).</p>
<p>There's a server process, which creates the <code>shared_memory_object</code> and writes to it, while holding an <code>interprocess_mutex</code> wrapped in a <code>scoped_lock</code>; and a client process which prints whatever the other one has written - in this case, it's an <code>int</code>.</p>
<p>I ran into a problem: if the server sleeps while holding the mutex, the client process is never able to aquire it and waits forever.</p>
<p>Buggy <b>server</b> loop:</p>
<pre><code>using namespace boost::interprocess;
int n = 0;
while (1) {
std::cerr << "acquiring mutex... ";
{
// "data" is a struct on the shared mem. and contains a mutex and an int
scoped_lock<interprocess_mutex> lock(data->mutex);
data->a = n++;
std::cerr << n << std::endl;
sleep(1);
} // if this bracket is placed before "sleep", everything works
}
</code></pre>
<p><b>Server</b> output:</p>
<pre><code>acquiring mutex... 1
acquiring mutex... 2
acquiring mutex... 3
acquiring mutex... 4
</code></pre>
<p><b>Client</b> loop:</p>
<pre><code>while(1) {
std::cerr << "acquiring mutex... ";
{
scoped_lock<interprocess_mutex> lock(data->mutex);
std::cerr << data->a << std::endl;
}
sleep(1);
}
</code></pre>
<p><b>Client</b> output (waits forever):</p>
<pre><code>acquiring mutex...
</code></pre>
<p>The thing is, if I move the bracket to the line before the <code>sleep</code> call, everything works. Why? I didn't think sleeping with a locked mutex would cause the mutex to be eternally locked.</p>
<p>The only theory I have is that when the kernel wakes up the server process, the scope ends and the mutex is released, but the waiting process isn't given a chance to run. The server then re-acquires the lock... But that doesn't seem to make a lot of sense.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/977265/sleep-while-holding-a-boostinterprocessscopedlock-causes-it-to-be-never-rele/977346#9773460Answer by Andrey for Sleep while holding a boost::interprocess::scoped_lock causes it to be never releasedAndrey2009-06-10T18:22:57Z2009-06-10T18:22:57Z<p>sleeping while holding a mutex is wrong. Mutex protects some data (i.e. data->a) and scope should be minimized around read/write of that data.</p>
http://stackoverflow.com/questions/977265/sleep-while-holding-a-boostinterprocessscopedlock-causes-it-to-be-never-rele/977356#9773566Answer by Steve Madsen for Sleep while holding a boost::interprocess::scoped_lock causes it to be never releasedSteve Madsen2009-06-10T18:24:25Z2009-06-10T18:24:25Z<p>Your theory is correct.</p>
<p>If you look at the bottom of the anonymous mutex example in the reference you linked, you'll see</p>
<blockquote>
<p>As we can see, a mutex is useful to protect data but not to notify to another process an event.</p>
</blockquote>
<p>Releasing the mutex doesn't notify anyone else that might be waiting on it, and since your process just woke up, it almost certainly has plenty of its scheduling quantum left to do more work. It will loop around and re-acquire the mutex before it sleeps again, which is the first opportunity the client has to acquire the mutex itself.</p>
<p>Moving the server <code>sleep()</code> outside of the scope means it goes to sleep while the mutex is free, giving the client a chance to run and acquire the mutex for itself.</p>
<p>Try calling <code>sched_yield()</code> (Linux only) if you want to give up the processor, but still sleep within your scope. <code>sleep(0)</code> may also work.</p>