⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 killzombiechild.c

📁 这是linux下的基础C编程代码。都是已经调试成功的
💻 C
字号:
#include <stdio.h>
#include <sys/wait.h>
#include <sys/types.h>

int main(void){
    pid_t pid;

    if ((pid = fork()) < 0){
        fprintf(stderr,"Fork error!\n");
        exit(-1);
    }
    else if (pid == 0){ /* first child */ 
        if ((pid = fork()) < 0){ 
            fprintf(stderr,"Fork error!\n");
            exit(-1);
        }
        else if (pid > 0){
            exit(0); /* parent from second fork == first child */
        }


        /*
         * We're the second child; our parent becomes init as soon
         * as our real parent calls exit() in the statement above.
         * Here's where we'd continue executing, knowing that when
         * we're done, init will reap our status.
         */
        sleep(2);
        printf("Second child, parent pid = %d\n", getppid());
        exit(0);
    }
    
    if (waitpid(pid, NULL, 0) != pid){ /* wait for first child */
        fprintf(stderr,"Waitpid error!\n");
        exit(-1);
    }

    /*
     * We're the parent (the original process); we continue executing,
     * knowing that we're not the parent of the second child.
     */
    exit(0);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -