waitpid的意图是什么

时间:2016-06-30 02:18:31

标签: linux

下面的示例代码来自linux手册页waitpid函数。如果用else替换最后的其他吗?当我编写代码时,我会写:if,else if和else以else结尾。所以我认为示例代码很奇怪。

   #include <sys/wait.h>
   #include <stdlib.h>
   #include <unistd.h>
   #include <stdio.h>

   int
   main(int argc, char *argv[])
   {
       pid_t cpid, w;
       int status;

       cpid = fork();
       if (cpid == -1) {
           perror("fork");
           exit(EXIT_FAILURE);
       }

       if (cpid == 0) {            /* Code executed by child */
           printf("Child PID is %ld\n", (long) getpid());
           if (argc == 1)
               pause();                    /* Wait for signals */
           _exit(atoi(argv[1]));

       } else {                    /* Code executed by parent */
           do {
               w = waitpid(cpid, &status, WUNTRACED | WCONTINUED);
               if (w == -1) {
                   perror("waitpid");
                   exit(EXIT_FAILURE);
               }

               if (WIFEXITED(status)) {
                   printf("exited, status=%d\n", WEXITSTATUS(status));
               } else if (WIFSIGNALED(status)) {
                   printf("killed by signal %d\n", WTERMSIG(status));
               } else if (WIFSTOPPED(status)) {
                   printf("stopped by signal %d\n", WSTOPSIG(status));
               } else if (WIFCONTINUED(status)) { /* can this be 
                                                   *replaced with else ???
                                                   */
                   printf("continued\n");
               }
           } while (!WIFEXITED(status) && !WIFSIGNALED(status));
           exit(EXIT_SUCCESS);
       }
   }

1 个答案:

答案 0 :(得分:1)

以下是我认为你问的问题:

  

waitpid是否有可能返回status,而不是WIFEXITED(status)   WIFSIGNALED(status)WIFSTOPPED(status)WIFCONTINUED(status)或   else返回非零值?

答案几乎肯定是“不”,Linux man page意味着没有(不幸)明确说出来。

UNIX标准说更多here,并且特别确保其中一个宏在某些情况下会返回非零值。但Linux并不(必然)符合此标准。

但是我认为代码中最好的解决方案是在这四个选项之后有一个WIFCONTINUED子句,并且(取决于你的应用程序)认为这意味着状态是未知的。即使现在情况并非如此,也可能发生这种情况 - 也许在未来的Linux版本中,还有另一种退出条件,这里没有涉及,并且您不希望代码在这种情况下崩溃。

标准似乎确实随着时间的推移而发展。例如,早期版本没有WIFCORED的情况,我也在一些其他系统中发现了一些1/1, 1500 1/13, 1600 1/14, 1700 2/22, 1800 5/1, 1400 的在线引用。因此,如果你担心它,那么让代码变得灵活是件好事。