创建子进程

Posted suwen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建子进程相关的知识,希望对你有一定的参考价值。

以下程序,创建了一个子进程,且父进程等待子进程的退出而退出:

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

int main() {
    pid_t pid;
    char *message;
    int n;
    int exit_code;
    
    printf("fork program starting\n");
    pid = fork();
    switch(pid) {
    case -1:
        perror("fork failed");
        exit(1);
    case 0:
        message = "This is the child";
        n = 5;
        exit_code = 37;
        break;
    default:
        message = "This is the parent";
        n = 3;
        exit_code = 0;
        break;
    }

    for(; n > 0; n--) {
        puts(message);
        sleep(1);
    }
    
    if(pid != 0) {
        int stat_val;
        pid_t child_pid;

        //while(1);
                //等待子进程的退出
        child_pid = wait(&stat_val);
        printf("Child has finished: PID = %d\n", child_pid);

        if(WIFEXITED(stat_val))
            printf("Child exited with code %d\n", WEXITSTATUS(stat_val));
        else
            printf("Child terminated abnormally\n");
    }
    
    exit(exit_code);
}    

运行结果:

技术分享

需要注意的是:假如上面程序中子进程退出了,但是父进程在wait()之前,子进程在进程表中的信息还是存在的,可在wait()前面暂停,用#ps -al命令查看,结果如下:

技术分享

此时,假如kill了父进程,那么子进程就变成了“僵尸进程”(进程已经不再运行,但它仍存在于系统下) ,此后子进程将认init进程为父进程。由init进程接管,直到init进程发现并释放它。

 

以上是关于创建子进程的主要内容,如果未能解决你的问题,请参考以下文章

使用C创建子进程和父进程

为啥 Parallel::ForkManager 创建子进程很好,但不能并行处理它们

Linux创建子进程的函数说明

如何从javascript(nodejs)程序调用python,而不创建子进程

使用fork创建子进程时,父ID与父ID不同[重复]

multiprocessing模块创建子进程