Golang中的条件变量不存在虚假唤醒的情况,为什么也要对条件做循环判断?
官方文档中保证"Unlike in other systems, Wait cannot return unless awoken by Broadcast or Signal.",就是说不存在虚假唤醒的情况,但是仍然要求这样循环判断的写法:
c.L.Lock()
for !condition() {
c.Wait()
}
... make use of condition ...
c.L.Unlock()
官方解释是“Because c.L is not locked when Wait first resumes, the caller typically cannot assume that the condition is true when Wait returns. Instead, the caller should Wait in a loop”,我没太懂,请问这是什么意思?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
猜测是因为可能防止Cond在其他协程的其他位置使用了Signal(), 这时候condition()还是返回false.
Because c.L is not locked when Wait first resumes
, 这句不理解, 为啥Wait第一次返回的时候锁是释放状态。