- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有以下代码:
int fds[2];
if (pipe(fds) < 0) {
fprintf(stderr, "ERROR, unable to open pipe: %s\n", strerror(errno));
}
if (fcntl(fds[0], F_SETFL, O_NONBLOCK) < 0) {
fprintf(stderr, "ERROR, unable make read end non-blocking: %s\n", strerror(errno));
}
pid_t pid1 = fork();
if (pid1 == 0) {
if (close(fds[0]) < 0) {
fprintf(stderr, "ERROR, unable to close read end of pipe: %s\n", strerror(errno));
}
// go on to write something
}
pid_t pid2 = fork();
if (pid2 == 0) {
if (close(fds[1]) < 0) {
fprintf(stderr, "ERROR, unable to close write end of pipe: %s\n", strerror(errno));
}
// go on to read something
}
if (close(fds[1]) < 0) {
fprintf(stderr, "ERROR, unable to close write end of pipe in main process: %s\n", strerror(errno));
}
if (close(fds[0]) < 0) {
fprintf(stderr, "ERROR, unable to close read end of pipe in main process: %s\n", strerror(errno));
}
我收到错误消息“错误,无法关闭主进程中管道的写入端:错误的文件描述符”。我的印象是你应该在任何不使用该端的进程中关闭管道的每一端。主进程在这里不使用管道。它的存在只是为了让两个 child 可以交流。此外,对 close() 的任何其他调用都没有其他错误。我不明白为什么父进程不能只关闭管道的写端。
最佳答案
我认为发生的事情是当子进程退出 if 语句时,它正在生成一个子进程并试图关闭一个已经关闭的管道:
pid_t pid1 = fork();
if (pid1 == 0) {
// child 1 comes here
if (close(fds[0]) < 0) {
fprintf(stderr, "ERROR, unable to close read end of pipe: %s\n", strerror(errno));
}
// go on to write something
// << you were supposed to call exit here. Child 1 passes through.
}
pid_t pid2 = fork();
if (pid2 == 0) {
// child 2 comes here first, but after that,
// child 1 will respawn a new child (child 3). Child 3
// closes a different pipe so no crash here.
if (close(fds[1]) < 0) {
fprintf(stderr, "ERROR, unable to close write end of pipe: %s\n", strerror(errno));
}
// go on to read something
// Big problem: Child 2 and Child 3 will pass through here.
}
// The main thread, as well as children 1, 2 and 3 are all here now.
// if any 2 threads try to close this pipe, you will get an error:
if (close(fds[1]) < 0) {
fprintf(stderr, "ERROR, unable to close write end of pipe in main process: %s\n", strerror(errno));
}
解决方案
在 if 语句末尾调用 exit 以防止子级退出 if 语句并继续关闭管道。
关于无法关闭管道 : bad file descriptor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29762181/
我有一个用于查找存储设备序列号的内核驱动程序,但该驱动程序存在问题。Descriptor->SerialNumberOffset 为 103但是 (LPCSTR)(UINT_PTR)Descripto
在我的程序中,每当我用导致无法检测到 ORB 功能的东西覆盖相机时,程序就会崩溃并出现错误: OpenCV Error: Assertion failed (type == src2.type() &
定义 通常,一个 descriptor 是具有“绑定行为”的对象属性。所绑定行为可通过 descriptor 协议被自定义的 __get__() , __set__() 和 __delete__(
如 normaluser : $ ulimit -n 4096 -bash: ulimit: open files: cannot modify limit: Operation not permit
我正在尝试在elasticsearch中安装ik分析,ik源来自以下位置: GitHub 我的步骤来自自述文件和来自互联网的一些资料 cd elasticsearch-analysis-ik mvn
我有以下代码: int fds[2]; if (pipe(fds) < 0) { fprintf(stderr, "ERROR, unable to open pipe: %s\n", str
我在 C 中有一个简单的生产者消费者程序,尝试用 fork 解决它当生产者试图在管道上写入时,我得到了错误:我用相同的逻辑编写了另一个程序,但这个程序没有给我任何线索,让我知道为什么? 生产者无法在管
我很难理解 FREAK 描述符中的参数 orientationNormalized 和 scaleNormalized。知道它们的意思或作用吗? OpenCV FREAK 文档:http://docs
我在做的事情是否符合通用设计模式?如果有,名字是什么? 我有一个复杂对象,它具有“简单”字段,例如字符串和字符串列表,以及其他复杂对象。我想将此对象的实例添加到 JMS 消息队列中,这意味着它们需要是
在例子中: event.events = EPOLLIN; event.data.fd = fd; int ret = epoll_ctl(epoll_fd, EPOLL_CTL_ADD, event
最近,我的 Crashlytics 和 Apple 崩溃日志收到了许多崩溃信息 -[CTTelephonyNetworkInfo updateRat:descriptor:]在没有太多其他信息的情况下
是否有可能将N个文件描述符作为一个文件描述符显示给程序,以便在N个文件描述符(即从N个套接字)中接收的数据将被转发回单个文件描述符上的调用API,从而隐藏它实际上可能来自不同的文件描述符的事实吗?是否
网络编程菜鸟在这里, 我对accept和connect套接字函数的行为感到困惑。在大多数编程语言中,这些函数的包装返回不同类型的值:accept返回可用于发送/接收数据的新描述符,但是connect不
我正在尝试启动resque-web,但是会发生此错误: [Sun Mar 06 05:27:48 +0000 2011]启动“resque-web” ... [Sun Mar 06 05:27:48
我有一个项目,其中有几个为程序集插件编写的自定义描述符。有没有办法一次只运行其中一个描述符而不是整个描述符?我尝试使用文档中的描述符开关 here ,传递到我想要运行的一个描述符的完整路径,但它正在运
我正在尝试学习 POSIX 中的基本 IO 函数,我编写了以下代码,但它不起作用,并且在我尝试执行代码时返回“Bad file descriptor”错误: #include #include #
编辑:最小、完整和可验证的示例位于下面的注释中,代码实际上有效,问题出在不同的区域。抱歉,发帖错误,我现在无法删除它。 我知道,已经有一些关于此的页面,但我确实尝试了所有方法,但没有任何效果。我一直遇
#define MAX 2 int main(){ int mutex = semget(ftok("/usr",'P'),1,IPC_CREAT|0666); int wrt = s
我正在尝试实现一个 simpel c shell,它将通过管道传输任意数量的命令。这是相关的 for 循环: int status; int i,j,inputFile,outputFile,pid;
简介 我典型的swig接口(interface)文件类似如下: %{ //COPY THIS BLOCK AS IS #include static CppClass* get_Cp
我是一名优秀的程序员,十分优秀!