免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 2089 | 回复: 11
打印 上一主题 下一主题

请各位大侠看看为什么这个程序没有正常退出 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-07-26 11:38 |只看该作者 |倒序浏览
函数源码:
#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]#

论坛徽章:
3
巳蛇
日期:2013-10-03 10:41:48申猴
日期:2014-07-29 16:12:04天蝎座
日期:2014-08-21 09:24:52
2 [报告]
发表于 2010-07-26 12:21 |只看该作者
樓主你的程序太過高深..
俺看不懂啊..

论坛徽章:
2
技术图书徽章
日期:2013-09-04 15:21:51酉鸡
日期:2013-11-01 21:20:20
3 [报告]
发表于 2010-07-26 12:30 |只看该作者
僵尸

论坛徽章:
3
巳蛇
日期:2013-10-03 10:41:48申猴
日期:2014-07-29 16:12:04天蝎座
日期:2014-08-21 09:24:52
4 [报告]
发表于 2010-07-26 12:38 |只看该作者
In UNIX System terminology, a process that has terminated, but whose parent has not yet waited for it, is called a zombie.

If we write a long-running program that forks many child processes, they become zombies unless we wait for them and fetch their termination status.

請教樓上.apue上是這麼說的.

但是,父進程終止后,子進程不是被init領養了嗎...

论坛徽章:
0
5 [报告]
发表于 2010-07-26 12:39 |只看该作者
楼主发上来的时候可以把#if 0 #endif中间的东西都去掉。

论坛徽章:
59
2015年亚洲杯之约旦
日期:2015-01-27 21:27:392015年亚洲杯之日本
日期:2015-02-06 22:09:41拜羊年徽章
日期:2015-03-03 16:15:432015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:50:282015元宵节徽章
日期:2015-03-06 15:50:392015年亚洲杯之阿联酋
日期:2015-03-19 17:39:302015年亚洲杯之中国
日期:2015-03-23 18:52:23巳蛇
日期:2014-12-14 22:44:03双子座
日期:2014-12-10 21:39:16处女座
日期:2014-12-02 08:03:17天蝎座
日期:2014-07-21 19:08:47
6 [报告]
发表于 2010-07-26 12:41 |只看该作者
wait(0); ???

怎么能Wait 0呢?

Parent:Wait(X)

论坛徽章:
0
7 [报告]
发表于 2010-07-26 13:24 |只看该作者
回复 6# folklore
我现在改成如下,怎么还是卡在那不动呢,为什么啊

    int main()
{
    int x = 0, fd[2] = {0};
        char buf[30] = {0}, s[30] = {0};
        pipe(fd);
        while (-1 == (x = fork()));
        if (0 == x) {
               
        } else {
            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);
}

论坛徽章:
0
8 [报告]
发表于 2010-07-26 13:40 |只看该作者
本帖最后由 zhangsuozhu 于 2010-07-26 13:53 编辑

呵呵。刚才看错了!

论坛徽章:
59
2015年亚洲杯之约旦
日期:2015-01-27 21:27:392015年亚洲杯之日本
日期:2015-02-06 22:09:41拜羊年徽章
日期:2015-03-03 16:15:432015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:50:282015元宵节徽章
日期:2015-03-06 15:50:392015年亚洲杯之阿联酋
日期:2015-03-19 17:39:302015年亚洲杯之中国
日期:2015-03-23 18:52:23巳蛇
日期:2014-12-14 22:44:03双子座
日期:2014-12-10 21:39:16处女座
日期:2014-12-02 08:03:17天蝎座
日期:2014-07-21 19:08:47
9 [报告]
发表于 2010-07-26 13:50 |只看该作者

  1. int main()
  2. {
  3.         int x = 0, fd[2];
  4.         char buf[30] = {0}, s[30] = {0};
  5.         pipe(fd);
  6.         while (-1 == (x = fork()));
  7.         if (0 == x) {
  8.             close(fd[1]);
  9.             read(fd[0], s, 30);
  10.             printf("childPID is %d, message%s", x, s);
  11.             exit(0);               
  12.         } else {
  13.             close(fd[0]);
  14.             sprintf(buf, "This is message from Father\r\n");
  15.             write(fd[1], buf, 30);
  16.         }
  17.         wait(x);
  18.         exit(0);
  19. }
复制代码
手上没有Unix系统,没发现什么错误,试试

论坛徽章:
0
10 [报告]
发表于 2010-07-26 14:03 |只看该作者
回复 9# folklore


    大侠英明啊
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP