《IO进程线程》利用有名管道实现读写操作 利用信号相关函数实现捕获信号8.4

目录

一、要求AB进程做通信

代码:

A进程通信

B进程通信

执行结果:

二、捕获2)3)20)号信号

代码:

执行结果:


一、要求AB进程做通信

1. A进程发送一句话,B进程接收打印

2. 然后B进程发送给A进程一句话,A进程接收打印

3. 重复1,2步骤,直到A进程或者B进程收到quit,退出AB进程;
 

代码:

A进程通信

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

int main(int argc, const char *argv[])
{
	umask(0);

	//创建有名管道
	if(mkfifo("./mkfifo",0777) < 0)
	{
		if(errno != 17)
		{
			perror("mkfifo");
			return -1;
		}
	}
	printf("mkfifo success\n");

	//打开有名管道
	int fd = open("./mkfifo",O_WRONLY);
	if(fd < 0)
	{
		perror("open");
		return -1;
	}
	printf("open success\n");
	
	//创建有名管道
	if(mkfifo("./mkfifo2",0777) < 0)
	{
		if(errno != 17)
		{
			perror("mkfifo2");
			return -1;
		}
	}
	printf("mkfifo2 success\n");

	//打开有名管道
	int fd2 = open("./mkfifo2",O_RDONLY);
	if(fd < 0)
	{
		perror("open");
		return -1;
	}
	printf("open success\n");


	char buf[128] = "";
	while(1)
	{
		printf("请输入>>");
		fgets(buf,sizeof(buf),stdin);
		buf[strlen(buf)-1] = 0;

		if(write(fd,buf,sizeof(buf)) < 0)
		{
			perror("write");
			return -1;
		}
		if(strcasecmp(buf, "quit") == 0)
				break;
		printf("write success\n");
/***********************************************************/
		char str[128] = "";
		ssize_t res2;
		bzero(str,sizeof(str));
		res2 = read(fd2,str,sizeof(str));
		if(res2 < 0)
		{
			perror("read");
			return -1;
		}
		else if(res2 == 0)
		{
			printf("对方进程退出\n");
			break;
		}
		printf("read success :%ld :%s\n",res2,str);
	}

	close(fd);
	close(fd2);
	return 0;
}

B进程通信

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

int main(int argc, const char *argv[])
{
	umask(0);

	//创建有名管道
	if(mkfifo("./mkfifo",0777) < 0)
	{
		if(errno != 17)
		{
			perror("mkfifo");
			return -1;
		}
	}

	//打开有名管道
	int fd = open("./mkfifo",O_RDONLY);
	if(fd < 0)
	{
		perror("open");
		return -1;
	}
	printf("open success\n");

	//创建有名管道
	if(mkfifo("./mkfifo2",0777) < 0)
	{
		if(errno != 17)
		{
			perror("mkfifo2");
			return -1;
		}
	}

	//打开有名管道
	int fd2 = open("./mkfifo2",O_WRONLY);
	if(fd2 < 0)
	{
		perror("open");
		return -1;
	}
	printf("open success\n");


	char buf[128] = "";
	ssize_t res = 0;
	while(1)
	{
		bzero(buf,sizeof(buf));
		res = read(fd,buf,sizeof(buf));
		if(res < 0)
		{
			perror("read");
			return -1;
		}
		else if(res == 0)
		{
			printf("对方进程退出\n");
			break;
		}
		printf("read success :%ld :%s\n",res,buf);
/*******************************************************/

	char str[128] = "";
		printf("请输入>>");
		fgets(str,sizeof(str),stdin);
		str[strlen(str)-1] = 0;

		if(write(fd2,str,sizeof(str)) < 0)
		{
			perror("write");
			return -1;
		}
		if(strcasecmp(str, "quit") == 0)
				break;
		printf("write success\n");
	}

	close(fd);
	close(fd2);

	return 0;
}

执行结果:

 

 

 

二、捕获2)3)20)号信号

2) SIGINT 默认处理函数:退出进程 ctrl + c
3) SIGQUIT 默认处理函数:退出进程 ctrl + \
20) SIGTSTP 默认处理函数:挂起进程 ctrl + z

 

代码:

#include <stdio.h>
#include <signal.h>
#include <unistd.h>

typedef void (*sighandler_t)(int);


//新的处理函数
void handler(int sig)
{
	printf("this is handler %d\n", sig);
}

void handler_1(int sig)
{
	printf("this is handler_1 %d\n", sig);
}


int main(int argc, const char *argv[])
{
	printf("h:%p h_1:%p\n", handler, handler_1); 	//h:0x55c187a7e76a h_1:0x55c187a7e78e
	//捕获2号信号SIGINT
	sighandler_t s1 = signal(2, handler);
	if(SIG_ERR == s1)
	{
		perror("signal");
		return -1;
	}
	printf("%p %d\n", s1, __LINE__); 	//默认处理函数的首地址获取不到,所以打印NULL;

	sighandler_t s2 = signal(3, handler);
	if(SIG_ERR == s2)
	{
		perror("signal");
		return -1;
	}
	printf("%p %d\n", s2, __LINE__); 	 


	sighandler_t s3 = signal(20, handler);
	if(SIG_ERR == s3)
	{
		perror("signal");
		return -1;
	}
	printf("%p %d\n", s3, __LINE__); 	



	s1 = signal(2, handler_1);
	if(SIG_ERR == s1)
	{
		perror("signal");
		return -1;
	}
	printf("%p %d\n", s1, __LINE__); 	//0x55c187a7e76a 38


	while(1)
	{
		printf("this is main\n");
		sleep(1);
	}

	return 0;
}

执行结果:

 

 

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值