2024.8.14

#include <sys/types.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/ipc.h>
#include <sys/msg.h>

struct msgbuf
{
	long mtype;  // 消息的标识(整数)
	char mtext[100];    // 消息的正文

};

int main()
{
	//1.创建KEY值
	key_t key = ftok("./", 0);
	if(-1 ==key)
	{
		printf("creat key failed");
		return -1;
	}
	
	//2.创建消息队列
	int msg_id = msgget(key, IPC_CREAT | 0777);
	if(-1 == msg_id)
	{
		printf("creat msg failed\n");
		return -1;
	}
	
	//3.往消息队列里面发送消息
	//需要定义一个结构体变量buf
	struct msgbuf buf;
	buf.mtype = 1; //消息的标识
	//需要给结构体成员赋值
	
	
	while(1)
	{
		memset(buf.mtext,0,100);
        printf("输入标识:");
        scanf("%ld",&buf.mtype);
        getchar();
		// 消息从键盘获取
		fgets(buf.mtext,100,stdin);//以回车结尾

		
		int msgsnd_ret = msgsnd(msg_id,&buf,sizeof(buf), 0); //默认是阻塞的发送
		if(-1 == msgsnd_ret)
		{
			printf("send msg failed\n"); 
			return -1;
		}
		
		
		if(strcmp(buf.mtext, "bye\n") == 0)
		{
			break;
		}
	}	
}
#include <sys/types.h>
#include <sys/wait.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <sys/ipc.h>
#include <sys/msg.h>

struct msgbuf
{
	long mtype;  // 消息的标识(整数)
	char mtext[100];    // 消息的正文

};


int main()
{
	//key值
	key_t key = ftok("./", 0);
	if(-1 ==key)
	{
		printf("creat key failed");
		return -1;
	}
	
	//创建消息队列
	int msg_id = msgget(key, IPC_CREAT | 0777);
	if(-1 == msg_id)
	{
		printf("creat msg failed\n");
		return -1;
	}
	
	
	//接受消息的消息
	struct msgbuf buf;
	
	while(1)
	{
        int a;
		memset(buf.mtext,0,100);
		ssize_t msgrcv_ret = msgrcv(msg_id, &buf,sizeof(buf), 1, 0);
		if(-1 == msgrcv_ret)
		{
			printf("rcv msg failed\n");
		}
        printf("请输入要接受到的信息的标识:\n");
        scanf("%ld", &a);
        if(a==buf.mtype)
        {
		if(strcmp(buf.mtext,"bye\n")==0)
		{
			break;
		}
		
		printf("MSG:%s\n",buf.mtext);
        }	
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值