freebsd中ioctl的实现
我想知道如何在 FreeBSD 中为字符设备实现 ioctl 命令。 我已经用 open()
close()
read()
write()
编写了一个字符设备,但我不这样做不知道应该将什么参数传递给ioctl_handler。有人知道d_ioctl_t
的原型吗?
I want to know how to implement ioctl
command for a character device in FreeBSD.
I already write a character device with open()
close()
read()
write()
but I don't know what argument should I pass to ioctl_handler
. Does anybody know the prototype of d_ioctl_t
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过 Google 快速搜索发现此页面,其中
d_ioctl_t< /code> 定义为:
A quick google search found this page where
d_ioctl_t
is defined as: