关于 I/O 完成中 I/O Works 中的同步访问
假设有4个I/O工作线程在使用与处理器数量相对应的I/O完成端口,他们之间是否需要对客户端上下文进行同步访问?
这里的客户端上下文是指通过 I/O CompletionKey 传递的内容。问题可能是,如果工作线程 A 已将 I/O 发送到具有上下文的 I/O 完成队列,但现在正在更改上下文。被唤醒处理 I/O 的 Worker B 同时正在读取上下文。会发生什么?
Supposing there are 4 I/O workers in the use of I/O Completion Port corresponding to the number of processors, do they need synchronous access on client context among each other?
The client context here refers to what is passed through I/O CompletionKey. The problem can be that if worker A has post an I/O to I/O Completion Queue with context but is now changing the context. Worker B who is waken up to deal the I/O is reading the context at the same time. What would happen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用关键部分同步对“客户端上下文”内容的访问。
You should synchronise access to the contents of your 'client context' using a critical section.