驱动程序将按键模拟到另一个进程中
如何模拟 Linux 上给定进程中按下的按键? Xorg 未运行,输入由 DirectFB 处理
How can I simulate a key being pressed in a given process on Linux? Xorg isn't running, the inputs are handled by DirectFB
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不完全确定你想在这里完成什么......有关你的目标的更多信息将会非常有帮助。
要在不同进程之间进行通信,您需要使用 信号 (或此处)或该特定程序的 API(例如,Xorg 的开发 wiki)。
I'm not entirely sure what you are trying to accomplish here... more information about your goals would be very helpful.
To communicate between different processes you either need to use signals (or here) or that specific program's API (e.g., Xorg's development wiki).
我认为您需要使用管道将信息输入到其他进程。您的程序可以做的是关闭 stdio 输入文件描述符并打开一个新的文件描述符,您的程序将使用该文件描述符写入进程。您可能会喜欢的一个很好的来源是 beejs posix 编程指南。查一下,里面有你需要的。
I would think that you'd want to use a pipe to input info to other processes. What your program could do is close the stdio input file descriptor and open a new file descriptor that your program uses to write to the process. A good source you may like is beejs guide to posix programming. look it up, it has what you need.