Linux进程基础——创建子进程

Linux进程基础

主要概念:

父进程与子进程

​ 创建新进程的那个进程称为父进程,新进程称为子进程。使用 fork() 函数创建子进程。

实验目的:

​ 创建子进程,分别在父进程和子进程中打印各自的 PID。

相关函数:

#include <sys/types.h>
#include <unistd.h>
pid_t fork(void)		//创建进程
pid_t getpid(void)		//获取进程ID
pid_t getppid(void)		//获取父进程ID

代码:

//fork.c
#include <stdio.h>
#include <unistd.h>

int main(void)
{
	pid_t pid;
	
	pid = fork();
	if(pid < 0)
	{
		printf("fork is error \n");
		return -1;
	}
	
	if(pid > 0)
	{
		printf("This is parent, parent pid is %d\n", getpid());
	}
	if(pid == 0)
	{
		printf("This is child, child pid is %d, parent pid is %d\n", getpid(), getppid()); 
	}
	
	return 0;
}

编译运行:

sixer@ubuntu:~/imx_usr/sys_app/01_process$ gcc -o fork fork.c

sixer@ubuntu:~/imx_usr/sys_app/01_process$ ./fork

实验现象:

sixer@ubuntu:~/imx_usr/sys_app/01_process$ ./fork This is parent, parent pid is 2039 This is child, child pid is 2040, parent pid is 2039

总结:

​ 可见父进程PID为2039,父进程创建了PID为2040的子进程。

  • 2
    点赞
  • 23
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

嵌入式小鸟

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值