忽略单个打开的文件的 SIGPIPE*
我正在查看的代码在这里:
Sparkle 就像一个插件。它可以在多线程程序中实例化。因此,我不想调用 signal(SIGPIPE, SIG_IGN) (即忽略所有 SIGPIPE),因为谁知道其他线程正在做什么/期望什么。
如何禁用通过 popen 打开的这个 FILE 指针的 SIGPIPE 信号?
The code I am looking at is here:
Sparkle is like a plugin. It can be instantiated in a multi-threaded program. Thus I don't want to call signal(SIGPIPE, SIG_IGN) (ie. ignore all SIGPIPE) as who knows what other threads are doing/expecting.
How can I disable the SIGPIPE signal for this one FILE pointer opened via popen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您用来编写插件的规范没有指定您必须执行的操作,那么我认为您无法使用 pipeline() 执行任何操作。解决这个问题的一种可能方法是使用 socketpair() 和 fdopen() 编写一个 popen() 等效项。
If the specs you are using to write your plugin don't specify what you have to do, I see nothing you can do with pipe(). A possible way to get out of this problem would be to write a popen() equivalent using socketpair() and fdopen().