Chinaunix

标题: 关于子进程的返回值问题请教 [打印本页]

作者: robinchris    时间: 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 编辑 ]
作者: seawolf1979    时间: 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
作者: robinchris    时间: 2006-06-06 23:33
多谢楼上的解释,其实我就想验证一下子进程在收到信号后是不是返回值为128+signum,但好像和验证的结果不一样。




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2