系统编程-进程-进程链、进程扇

1. 进程链、进程扇 图示

系统编程-进程-进程链、进程扇

所谓进程链就是父进程创建一个子进程,创建的子进程再次创建出属于自己的子进程,这样依次往下循环。

所谓的进程扇就是一个父进程创建出多个子进程。

 

2. 进程链

#include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <string.h> int main(){ int i=0; for(i=0; i<5; i++){ pid_t pid = fork(); if(pid < 0){ perror("fork "); }else if(pid > 0){ break; } sleep(3); } printf("pid: %d, ppid: %d\n", \ getpid(), getppid()); while(1); return 0; }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpfjxg.html