Linux系统中三个特殊的进程

僵尸进程

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

int main(int argc,const char *argv[])
{
	pid_t cpid = fork();
	if(0 == cpid){
		printf("child was killed\n");
		exit(0);
		//子进程未被父进程回收资源,变成僵尸进程
	}
	while(1)
		sleep(1);
	return 0;
}

孤儿进程

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

int main(int argc,const char *argv[])
{
	pid_t cpid = fork();
	if(cpid == 0){
	//child
		printf("this is child\n");
		//父进程结束而子进程为结束,则子进程变成孤儿进程
		while(1){
			printf("this is a orphan    %d\n",getpid());
			sleep(1);
		}
	}
	printf("parent is die\n");
	return 0;
}

守护进程(幽灵进程)

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


int main(int argc,const char *argv[])
{
	//1、创建孤儿进程
	if(0 == fork()){
		//2、创建新的会话组
		if(setsid() == -1){
			perror("setsid");
			return -1;
		}
		//3、使孤儿进程运行在不可以被删除的目录下
		if(chdir("/") == -1){
			perror("chdir");
			return -1;
		}
		//4、重设文件权限掩码
		umask(0);
		//5、关闭所有从父进程复制过来的文件描述符,用时再使用open打开
		for(int i=0;i<getdtablesize();i++){
			close(i);
		}
		while(1){
			//守护进程(幽灵进程)运行代码
			sleep(1);
		}
	}
	return 0;
}

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值