学习IO的第七天

发布时间:2023年12月17日

作业:使用消息队列完成两个进程间的相互通信

#include <head.h>

struct msgbuf
{
	long mtype;            //消息类型
	char mtext[1024];      //正文大小
};

#define SIZE (sizeof(struct msgbuf)-sizeof(long))

int main(int argc, const char *argv[])
{
	//1.创建key值
	key_t key = ftok("/", 'k');
	if(key == -1)
	{
		perror("key create error\n");
		return -1;
	}

	printf("key = %#x\n", key);

	//2.创建消息队列
	int msgid = msgget(key, IPC_CREAT|0664);
	if(msgid == -1)
	{
		perror("msgget error\n");
		return -1;
	}

	//创建进程
	pid_t pid = fork();


	//3.向消息队列中存放数据
	struct msgbuf buf;
	if(pid>0)
	{
		while(1)
		{
			printf("请输入类型: ");
			scanf("%ld", &buf.mtype);
			printf("请输入数据: ");
			scanf("%s",buf.mtext);

			//将消息放入消息队列中
			msgsnd(msgid, &buf, SIZE, 0);

			//退出
			if(strcmp(buf.mtext, "quit") == 0)
			{
				break;
			}
		}
	}
	else if(pid == 0)
	{
		while(1)
		{
			msgrcv(msgid, &buf, SIZE, 1, 0);
			printf("收到1号消息: %s\n", buf.mtext);

			if(strcmp(buf.mtext, "quit") == 0)
			{
				break;
			}
		}
		exit(EXIT_SUCCESS);
	}
	else 
	{
		perror("fork error");
		return -1;
	}

	//4.删除消息队列
	if(msgctl(msgid, IPC_RMID,NULL) == -1)
	{
		perror("msgctl error\n");
		return -1;
	}

	wait(NULL);
	return 0;
}
#include <head.h>

struct msgbuf
{
	long mtype;            //消息类型
	char mtext[1024];      //正文大小
};

#define SIZE (sizeof(struct msgbuf)-sizeof(long))

int main(int argc, const char *argv[])
{
	//1.创建key值
	key_t key = ftok("/", 'k');
	if(key == -1)
	{
		perror("key create error\n");
		return -1;
	}

	printf("key = %#x\n", key);

	//2.创建消息队列
	int msgid = msgget(key, IPC_CREAT|0664);
	if(msgid == -1)
	{
		perror("msgget error\n");
		return -1;
	}

	//创建进程
	pid_t pid = fork();


	//3.向消息队列中存放数据
	struct msgbuf buf;
	if(pid>0)
	{
		while(1)
		{
			printf("请输入类型: ");
			scanf("%ld", &buf.mtype);
			printf("请输入数据: ");
			scanf("%s",buf.mtext);

			//将消息放入消息队列中
			msgsnd(msgid, &buf, SIZE, 0);

			//退出
			if(strcmp(buf.mtext, "quit") == 0)
			{
				break;
			}
		}
	}
	else if(pid == 0)
	{
		while(1)
		{
			msgrcv(msgid, &buf, SIZE, 2, 0);
			printf("收到1号消息: %s\n", buf.mtext);

			if(strcmp(buf.mtext, "quit") == 0)
			{
				break;
			}
		}
		exit(EXIT_SUCCESS);
	}
	else 
	{
		perror("fork error");
		return -1;
	}

	wait(NULL);
	//4.删除消息队列
	
	return 0;
}

效果图

文章来源:https://blog.csdn.net/zdy_cl/article/details/134934546
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。