所以我是linux中进程间通信和进程的新手,所以我真的无法弄清楚问题是什么。我编写的以下程序与我在家庭作业中遇到的问题相同,该作业包括使用冷凝管。它基本上是从孩子向父母发送一个字符,但它不会打印出该字符。
它打印出来:
hello from child
sending a
hello from parent
trying to receive...
received: reaping child
在第三行应该说
received: a
任何答案都表示赞赏,如果您对程序中的其他任何内容有任何有用的批评,也将不胜感激。谢谢大家
#include <stdio.h>
#include <unistd.h>
#include <sys/wait.h>
#include <stdlib.h>
int main(int argc, char* argv[])
{
pid_t pid = fork();
int comm[2];
pipe(comm);
if (pid == 0)
{
char send = 'a';
int check;
close(comm[0]);
printf("hello from child\n");
printf("sending %c\n", send);
check = write(comm[1], &send, 1);
printf("%d\n", check);
exit(1);
}
else if (pid > 0)
{
char get = ' ';
int check;
close(comm[1]);
printf("hello from parent\n");
printf("trying to receive...\n");
read(comm[0], &get, 2);
printf("received: %c\n", get);
printf("reaping child\n");
wait(NULL);
return 0;
}
return 0;
}