如何在C中打印linux上a和b之间的IPC消息?
假设我是 root,那么特权不是问题。
如何在任意两个本地进程之间打印 IPC 消息?
Suppose I'm root,so privilege is not an issue.
How can I print IPC message between arbitrary two local processes ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最通用的方法是使用套接字。如果您的消息是整数类型,那么信号也可以工作。
取决于消息的外观。
The most versatile way is to use sockets. If your message is an integral type then signals will work too.
Depends on what the message looks like.
如前所述,如果您发布有关您想要执行的操作的更多详细信息,将会很有帮助。我确实找到了这些可能有助于您入门的链接: http://www .cs.cf.ac.uk/Dave/C/node25.html http://www.codeproject.com/KB/threads/sharedmemipc.aspx
As previously stated, it would be helpful if you posted more detail as to what you want to do. I did find these links that might help get you started: http://www.cs.cf.ac.uk/Dave/C/node25.html http://www.codeproject.com/KB/threads/sharedmemipc.aspx