ReadFileScatter/WriteFileGather 的内核等效项是什么
如何从 Windows 内核执行向量文件 I/O?我需要一个等价的 ReadFileScatter
/WriteFileGather
。
How to perform vectored file I/O from the Windows kernel? I need an equivalent of ReadFileScatter
/WriteFileGather
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
NtReadFileScatter 和 NtWriteFileGatter 还有 以下 可能是一个很好的补充
NtReadFileScatter and NtWriteFileGatter Also the following might be a good addition
我相信您可以使用
ZwReadFileScatter
和ZwWriteFileGather
但我在 MSDN 上找不到它们的文档,而且我手头没有 DDK 标头。I believe you can use
ZwReadFileScatter
andZwWriteFileGather
but I can't find documentation for them on MSDN, and I don't have the DDK headers at hand.