关于 I/O 完成中 I/O Works 中的同步访问

发布于 2024-11-15 04:51:43 字数 198 浏览 5 评论 0原文

假设有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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等往事风中吹 2024-11-22 04:51:43

您应该使用关键部分同步对“客户端上下文”内容的访问。

You should synchronise access to the contents of your 'client context' using a critical section.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文