- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在使用 fork 和 pipes 制作一个用于学习目的的简单程序时遇到了问题。我想要一个 child 向 parent 发送一些数据,然后这个( parent )再次将它发送给 child 。
结果是父进程表现得像管道是非阻塞的,而子进程表现得好像管道是阻塞的。但是我没有使用任何代码来说明管道是非阻塞的。
让我展示一下:
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <conio.h>
void WriteStr(char* inStr)
{
write(1,inStr,strlen(inStr));
}
int main(void){
char *cad1 = "Introdueix un valor: ";
int bytesr = 0;
char valor[256];
//Un pipe serveix solament per una comunicació unidereccional,
//si es necessari que pare i fill es comuniquin en amdos sentits,
//s'hauran d'utilitzar dos pipes.
int pip_fill[2]; //pip_fp[0]: file descriptor de lectura
//pip_fp[1]: file descriptor d'escriptura
int pip_pare[2]; //pip_pf[0]: file descriptor de lectura
//pip_pf[1]: file descriptor d'escriptura
int pid, nbytes = 0;
char cad[256];
int num = 0;
if (pipe (pip_fill)<0){
write (1,"Pipe error!!!!\n",15);
exit (1);
}
if (pipe (pip_pare)<0){
write (1,"Pipe error!!!!\n",15);
exit (1);
}
fflushnou();
pid = fork();
switch (pid){
case -1:
//Error
write (2,"Tractar_Valor: Error!!!!\n",25);
exit (-1);
case 0:
//Fill
//printf("Fill: fp[0]:%d fp[1]:%d pf[0]:%d pf[1]:%d \n",pip_fp[0],pip_fp[1],pip_pf[0],pip_pf[1]);
close(pip_fill[0]);
close(pip_pare[1]);
while(1){
bytesr = read(0, valor, 256);
valor[bytesr] = '\0';
write(pip_fill[1],valor,strlen(valor)); //el fill escriu a la pipe la var valor
WriteStr("Fill avans\n");
nbytes = read(pip_pare[0],cad,strlen(cad)); //el fill llegeix de la pipe la var un cop ha estat tractada per el pare
WriteStr("Fill despres\n");
if (nbytes != 0){ //vol dir que hem llegit algo per la pipe pip_pf
write(1,cad,strlen(cad)); //pintem cad per pantalla
}
sleep(1);
}
default:
//Pare
close(pip_fill[1]);
close(pip_pare[0]);
close(0);
while(1){
nbytes = read(pip_fill[0],valor,strlen(valor));//el pare llegeix de la pipe la var valor
//WriteStr("Pare despres\n");
if (nbytes != 0){ //vol dir que hem llegit algo per la pipe pip_fp
//tractem la variable valor
num = atoi(valor);
num = num*2;
sprintf(cad,"Valor actual de la variable: %d \n\n",num);
write(1,cad,strlen(cad));
write(pip_pare[1],cad,strlen(cad)); //el pare escriu a la pipe la var tractada
}
sleep(1);
}
}
return 0;
}
实际行为是 child 接受输入,然后卡住阅读“pip_pare[0]”。与此同时,父进程在循环并一直从'pip_fill[0]'中读取值0。
所以,我对此有点困惑,为什么 parent 正在读取和 loopinf 而不会阻塞“读取”函数??
有什么修复建议吗?
感谢您的帮助:)
洛伦斯
最佳答案
nbytes = read(pip_pare[0],cad,strlen(cad));
我认为您可能在这里指的是 sizeof(cad)
。
write(1,cad,strlen(cad));
还有 nbytes
在这里。
nbytes = read(pip_fill[0],valor,strlen(valor));
这也是类似的,但是这个版本中有一个隐藏的陷阱,我将把它留作练习!
关于c - 叉+管问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5136202/
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 Improve th
我在使用 fork 和 pipes 制作一个用于学习目的的简单程序时遇到了问题。我想要一个 child 向 parent 发送一些数据,然后这个( parent )再次将它发送给 child 。 结果
我正在制作一个需要同时做 3 件事的 python 脚本。什么是实现此目的的好方法,就像我听说的关于 GIL 的方法一样,我不再那么倾向于使用线程了。 脚本需要做的两件事将非常活跃,他们将有很多工作要
有没有办法运行sshd以便它可以(至少对于有限数量的登录)成功返回提示(可能是 busybox),即使 fork 不可用(例如,PID 不足)? 在我看来,这应该是可能的,例如,sshd 预 fork
我意识到 Bootstrap 将使用 v4 切换到 rem。但是,我使用的是当前版本 (v3),我想使用 rem。 原因?我希望网站上有可以为最终用户缩放字体大小的按钮。我相信最好的实现方式是使用 r
我试图在这个程序中将信息从子进程传递到父进程。这是到目前为止的代码,仍在清理它: #include #include #include #include main() { char *
我试图理解 fork 在 C 中是如何工作的,但我在某个地方误解了一些东西。 我去年遇到了一位教授给我的测试,但我无法回复它:我们有 3 个任务(进程或线程),伪代码如下: Th1 { display
我在使用 fork() 之类的东西时遇到了一些麻烦。 我正在开发一个 shell,用户可以在其中编写将像在普通普通 shell 中一样执行的命令。 我有一个像这样的主要功能: void Shell::
我有一个 Python 主进程,以及由主进程使用 os.fork() 创建的一组或多个 worker . 我需要将大型且相当复杂的数据结构从工作程序传递回主进程。您会为此推荐哪些现有库? 数据结构是列
我对这个 fork 语句很陌生,我不知道 C 程序上的 fork 方法。你能告诉我这段代码的三个可能的输出是什么吗? #include #include int main(void) {
for(i=0;i #include int main() { for(int i=0;i<2;i++) { if(fork()==0) { printf("Hi %d %d
背景 我正在用 C 语言编写一个共享库,与 LD_PRELOAD 动态链接,这意味着拦截和覆盖预加载它的应用程序的网络调用,例如 socket()、connect()、recv()、send()等 在
我是一名优秀的程序员,十分优秀!