子进程getppid()的返回值为1???

2019-03-26 16:04发布

我的BBB上的系统为Angstrom Linux,我在上面编写了一个程序,如下:
  1. #include <stdio.h>

  2. /* finding pids within a process using system calls */

  3. int main(void)
  4. {
  5.         int pid, ppid;
  6.         pid = fork();
  7.         printf("%d first output from both processes ", pid);
  8.         sleep(20);

  9.         if( pid>0 )
  10.         {
  11.                 printf("%d %s", pid, "This is the child's pid, output by the parent process. ");

  12.                 ppid = getppid();
  13.                 printf("%s %d ", "The pid of the parent of parent process is", ppid);
  14.         }
  15.         else if( pid==0 )
  16.         {
  17.                 printf("%d%s", pid, "is printed inside the child process if the fork succeeds. ");

  18.                 ppid = getppid();
  19.                 printf("%s %d ", "The pid of the parent of child process is", ppid);

  20.                 pid = getpid();
  21.                 printf("%d %s", pid, "is the child pid printed by the child, obtained by getpid(). ");
  22.         }
  23.         else
  24.         {
  25.                 printf("fork failed. ");
  26.         }

  27.         return 0;

  28. }
复制代码父进程和子进程都需要打印出自己的父进程的pid,下面是运行结果截图:
email1.png
子进程打印出的自己的父进程的pid竟然是1。我查看了一下系统的所有进程:
email3.png
这。怎么可能!!!
同样的程序, 我又在Ubuntu上编译运行,就可以得到正确的结果:
email2.png

为什么呀?
此帖出自小平头技术问答
0条回答

一周热门 更多>