免费注册 查看新帖 |

Chinaunix

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

关于子进程的返回值问题请教 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-06-06 11:45 |只看该作者 |倒序浏览
在advanced linux programming中,有下面一段,然后写了一点代码想测试一下,发现不对,是不是我的理解有问题?
Note that even though the parameter type of the exit function is int and the main function returns an int,Linux does not preserve the full 32 bits of the return code.In fact,you should use exit codes only between zero and 127.Exit codes above 128 have a special meaning—when a process is terminated by a signal,its exit code is 128 plus the signal number.

测试代码如下:
#include <unistd.h>
#include <stdio.h>
#include <sys/types.h>
#include <sys/wait.h>
int main()
{
  int chld_status;
  pid_t pid;
  pid=fork();
  if(pid>0)
  {
    printf("Parent process,and child process:%d\n",pid);
    wait(&chld_status);
    printf("child process return value:%d\n",WEXITSTATUS(chld_status));
    return 0;
  }else{
    printf("Child process pid:%d\n",getpid());
    sleep(20);
    return 0;
  }
}

如果不向子进程发signal,结果如下:
Child process pid:14879
Parent process,and child process:14879
child process return value:0
如果向子进程发signal(kill -SIGTERM 14887),结果如下:
Child process pid:14887
Parent process,and child process:14887
child process return value:0

按上面的解释子进程的返回值应该是128+15(SIGTERM)=143才对吧?

[ 本帖最后由 robinchris 于 2006-6-6 11:53 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2006-06-06 18:03 |只看该作者
你不应该直接用WEXITSTATUS()。

建议你看书APUE(Unix环境高级编程)的第八章。

  1. void pr_exit(int status)
  2. {
  3.         if (WIFEXITED(status))
  4.                 printf("normal termination, exit status = %d\n",
  5.                                 WEXITSTATUS(status));
  6.         else if (WIFSIGNALED(status))
  7.                 printf("abnormal termination, signal number = %d%s\n",
  8.                                 WTERMSIG(status),
  9. #ifdef  WCOREDUMP
  10.                                 WCOREDUMP(status) ? " (core file generated)" : "");
  11. #else
  12.                                 "");
  13. #endif
  14.         else if (WIFSTOPPED(status))
  15.                 printf("child stopped, signal number = %d\n",
  16.                                 WSTOPSIG(status));
  17. }
复制代码


输出应为 abnormal termination, signal number = 15

论坛徽章:
0
3 [报告]
发表于 2006-06-06 23:33 |只看该作者
多谢楼上的解释,其实我就想验证一下子进程在收到信号后是不是返回值为128+signum,但好像和验证的结果不一样。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP