應用代碼驗證linux子過程與父過程的關系。本站提示廣大學習愛好者:(應用代碼驗證linux子過程與父過程的關系)文章只能為提供參考,不一定能成為您想要的結果。以下是應用代碼驗證linux子過程與父過程的關系正文
/******** basic.c ********/
#include "basic.h"
pid_t Fork(void)
{
pid_t pid = fork();
if (pid < 0) {
fprintf(stderr, "Fork error: %s\n", strerror(errno));
exit(0);
}
return pid;
}
********** basic.h ***********
#ifndef __CSAPP_BASIC_H
#define __CSAPP_BASIC_H
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <signal.h>
#include <unistd.h>
#include <string.h>
/* function definition concerned with basic.c */
pid_t Fork();
#endif
******* fork.c *********
#include "basic.h"
int main()
{
int pid = Fork();
int x = 2;
if (pid == 0) {
printf("child: pid = %d, ppid = %d, x = %d\n", getpid(), getppid(), ++x);
sleep(3);
printf("child: pid = %d, ppid = %d, x = %d\n", getpid(), getppid(), ++x);
exit(0);
}
printf("parent: pid = %d, ppid = %d, x = %d\n", getpid(), getppid(), --x);
}
經由過程 gcc fork.c basic.c -o fork 編譯便可的 fork 法式。 運轉 ./fork
可以看出父過程起首加入,加入前child的PPID為12256, 加入後子過程的PPID變成了 1.解釋父過程加入後的子過程由 init 超等過程1領養。而該過程是不停不會加入的。