質問

I'm debugging a deadlock. I would like to wake up a thread that's waiting on a condition variable, so that I can trace as it re checks the sleep conditions. Sleeping on a condition variable is subject to spurious wake ups, so how can I force such a wake up?

役に立ちましたか?

解決

If you're using windbg you can call WakeAllConditionVariable in the debugee using windbg's .call command.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top