|
3 |
edited tags
|
||
|
2 |
edited tags
|
||
|
1 |
|
||
Sleep while holding a boost::interprocess::scoped_lock causes it to be never releasedHi, I'm doing IPC on Linux using There's a server process, which creates the 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. Buggy server loop:
Server output:
Client loop:
Client output (waits forever):
The thing is, if I move the bracket to the line before the 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. Thanks!
|
||||
