当前位置:   article > 正文

进程习题1

进程习题1
  1. 编写一个程序,使其产生一个子进程c,并使用exec函数簇中的任意版本,使得子进程执行系统命令ls -l查看某个文件的详细信息,
    父进程判断子进程是否执行成功?
#include <signal.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/wait.h>

int main()
{
	pid_t son=fork();

	if(son>0) //父进程
	{
		int status;
		wait(&status);
		if(WIFEXITED(status))  //判断子进程是否正常退出
		{
			printf("正常退出,返回值为:%d\n",WIFEXITED(status));
		}
	}
	if(son == 0) //子进程
	{
		int ret=execl("/bin/ls","ls","-l","day1.c",NULL);
		if(ret == -1)
		{
			perror("execl error\n");
		}
		exit(0);
	}

	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  1. 写一个程序,创建嵌套的三个子进程,获取不同的子进程的父进程pid
    尝试退出函数和等待函数waitpid监听
/*
写一个程序,创建嵌套的三个子进程,获取不同的子进程的父进程pid
   尝试退出函数和等待函数waitpid监听
*/
#include <signal.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/wait.h>

int main()
{
	pid_t son1,son2,son3;//子进程
	int status1,status2,status3;//状态值
	int ret1,ret2,ret3;
	
	//创建进程1
	son1=fork();
	if(son1 == 0)//子进程
	{
		printf("父进程的pid=%d\n",getppid());
		exit(10);//退出子进程
	}
	else if(son1 > 0)//父进程
	{
		//创建进程2
		son2=fork();
		if(son2 == 0)//子进程
		{
			printf("父进程的pid=%d\n",getppid());
			exit(15);//退出子进程
		}
		else if(son2 > 0)//父进程
		{
			//创建进程3
			son2=fork();
			if(son2 == 0)//子进程
			{
				printf("父进程的pid=%d\n",getppid());
				exit(20);//退出子进程
			}
			else if(son2 > 0)//父进程
			{
				printf("我是父进程3\n");
                ret3=waitpid(-1,&status3,0);				
			} 
			printf("我是父进程2\n");
            ret2=waitpid(-1,&status2,0);	
		}
		printf("我是父进程3\n");
        ret1=waitpid(-1,&status1,0);	
	}
	printf("等待状态值1%d  状态值2%d 状态值3%d\n",ret1,ret2,ret3);
	printf("等待退出值1%d  退出值2%d 退出值3%d\n",
			               WEXITSTATUS(status1),WEXITSTATUS(status2),WEXITSTATUS(status3));
	return 0;
}



  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/462496
推荐阅读
相关标签
  

闽ICP备14008679号