- 论坛徽章:
- 0
|
函数源码:
#include <stdio.h>
#include <unistd.h>
int main()
{
int x = 0, fd[2] = {0};
char buf[30] = {0}, s[30] = {0};
pipe(fd);
while (-1 == (x = fork()));
if (0 == x) {
#if 0
sprintf(buf, "This is message from child\r\n");
write(fd[1], buf, 30);
#endif
} else {
#if 0
wait(0);
read(fd[0], s, 30);
printf("childPID is %d, message%s", x, s);
#endif
sprintf(buf, "This is message from Father\r\n");
write(fd[1], buf, 30);
}
if (0 == x) {
wait(0);
read(fd[0], s, 30);
printf("childPID is %d, message%s", x, s);
//exit(0);
}
exit(0);
}
为什么在linux编译运行后,没有正常退出呢?
[root@localhost c_testy]# childPID is 0, messageThis is message from Father//程序卡在这个地方,没有出现下面的命令行提示符呢
[root@localhost c_testy]# |
|