关于子进程的返回值问题请教

发布于 2022-07-18 16:29:51 字数 1604 浏览 5 评论 2

在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:%dn",pid);
    wait(&chld_status);
    printf("child process return value:%dn",WEXITSTATUS(chld_status));
    return 0;
  }else{
    printf("Child process pid:%dn",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 编辑 ]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陌若浮生 2022-07-22 02:17:02

多谢楼上的解释,其实我就想验证一下子进程在收到信号后是不是返回值为128+signum,但好像和验证的结果不一样。

可爱暴击 2022-07-19 19:36:21

你不应该直接用WEXITSTATUS()。

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

  1. void pr_exit(int status)
  2. {
  3.         if (WIFEXITED(status))
  4.                 printf("normal termination, exit status = %dn",
  5.                                 WEXITSTATUS(status));
  6.         else if (WIFSIGNALED(status))
  7.                 printf("abnormal termination, signal number = %d%sn",
  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 = %dn",
  16.                                 WSTOPSIG(status));
  17. }

复制代码

输出应为 abnormal termination, signal number = 15

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文