IOSharedDataQueue 示例
我在哪里可以找到使用 IOSharedDataQueue 的示例代码(我想将数据从用户空间发送到内核空间)?
Where can i found sample code for using IOSharedDataQueue ( i want to send data from user-space to kernel-space)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在用户空间和内核空间之间发送零星数据通常是通过 IOUserClient http: //developer.apple.com/library/mac/#samplecode/SimpleUserClient/Introduction/Intro.html
IOSharedDataQueue 是一个更大的锤子,将运行恒定的数据流,就像您需要推/拉一样实时音频或视频数据。
如果您只需要从内核获取消息或通知,请使用 userClient...
sending sporadic data betwixt userland and kernelspace is generally done via IOUserClient http://developer.apple.com/library/mac/#samplecode/SimpleUserClient/Introduction/Intro.html
IOSharedDataQueue is a bigger hammer and would be to run a constant stream of data, like if you needed to push / pull audio or video data in realtime.
if you just need to get messages or notifications to and from the kernel, use a userClient...