Linux连续使用两个fork进程编程

本文详细介绍在Linux环境下使用C语言进行进程控制编程的方法。包括使用vim编辑源代码,通过gcc命令编译并运行程序,以及理解fork()函数在创建子进程时的返回值含义。文章还提供了一个示例代码,展示如何通过两次fork()调用创建子进程和孙进程,以及如何区分和打印主进程、子进程和孙进程的信息。
摘要由CSDN通过智能技术生成

Linux中使用c语言进行进程控制编程步骤:

  1. 使用vim编写c语言源代码
  2.     保存代码后编译代码 终端命令:gcc -o filename filename.c 或者 gcc filename -o filename.c
  3.     执行编译后的文件(注意编译时给可执行文件的命名,此处是filename),终端命令:./filename
  4.     debug

fork()函数饭返回值的意义:

  1. -1:子进程分裂失败
  2. 0:子进程
  3. >0:父进程

写代码,使其符合如下的执行逻辑,并给出执行效果及分析。

主进程调用fork()产生子进程1

主进程调用fork()产生子进程2,子进程1产生孙进程

#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
int main(void){
        pc_t pc,pc2;
        char *message;
        int x;
        pc = fork();
    pc2 = fork();
        if (pc < 0)
        {       perror("fork failed");
                exit(1);}

        if (pc>0)
        {       message = "This is the child\n";
                x = 0;  }
//主进程
    if(pc>0&&pc2>0){
        printf("===I am the main progress!===\n");
        printf("My pc is %d ,I am the main progress\n",getpc());
        sleep(3);
    }
//子进程的主进程
    if(pc==0&&pc2>0){
        printf("===I am the son progress!===\n");
        printf("My pc is %d,I am the first son pc,my father's pc is %d\n",getpc(),getppc());
        sleep(3);
    }
//主进程的子进程
    if(pc>00&&pc2==0){
        printf("===I am the son progress!===\n");
        printf("My pc is %d,I am the second son pc,my father's pc is %d\n",getpc(),getppc());
    }
//子进程的子进程
    if(pc==0&&pc2==0){
        printf("===I am the grandson progress!===\n");
        printf("My pc is %d,I am the grandson pc,my father's pc is %d\n",getpc(),getppc());
    }

        return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值