我的应用程序派生了一个孩子,孩子执行了一个新程序,父母向它写入,然后在孩子执行一些工作后从孩子那里读回。在监控管道的读取端时,程序仍然在等待子进程。我目前没有回信给父母,所以它会故意阻止。下面是代码(write_to() 函数关闭函数中管道的未使用部分):
pid_t leaf_proc;
int rv = 0;
int w_pfd[2];
int r_pfd[2];
if(pipe(w_pfd) == -1 || pipe(r_pfd) == -1){
printf("Failed to pipe. Goodbye.\n");
exit(0);
}
if((leaf_proc = fork()) < 0){
printf("Error: %s\n",strerror(errno));
exit(0);
}else if(leaf_proc == 0){
/***Child to be execl()'d***/
rv = execl("Some program");
if(rv < 0){
printf("Error: %s\n",strerror(errno));
exit(0);
}
}else{
/***Parent***/
write_to(par_info,w_pfd);
fd_set read_set;
//struct timeval tv;
//tv.tv_sec = 5;
//tv.tv_usec = 0;
FD_ZERO(&read_set);
FD_SET(r_pfd[0], &read_set);
rv = select(r_pfd[0]+1,&read_set,NULL,NULL,&tv);
printf("set?: %d\n",rv);
}
运行此程序时,程序仍然挂在 select 语句(永远不会到达最后一个 printf),但如果我添加超时信息,程序会在 5 秒后继续。首先,我是否正确使用 select ?其次,虽然这可能不会阻塞(从某种意义上说,父进程不会被内核中断,但它是否仍然会导致结果(进程挂起直到准备好)?