/*
1.进程A向消息队列发送消息“hello world”
2.进程B从消息队列读取消息,并打印
3.进程C向消息队列发送"自己的姓名"
4.进程D从消息队列中取出姓名字符串,并打印
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/ipc.h>
#include <unistd.h>
#include <sys/msg.h>
#include <sys/types.h>
struct msg{
char msg_str[128];
};
int main()
{
int qid;
struct msg mymsg;
/*
msgget:建立消息队列
int msgsnd ( int msgid , struct msgbuf*msgp , int msgsz, int msgflg );
参数说明:
传给msgsnd()函数的第一个参数msqid 是消息队列对象的标识符(由msgget()函数得
到),第二个参数msgp 指向要发送的消息所在的内存,第三个参数msgsz 是要发送信息 的长度(字节数),第四个参数是控制函数行为的标志
msgsnd:将消息送入消息队列
msgrcv:从消息队列中读取消息
*/
if(qid = msgget(0x66,0666|IPC_CREAT) < 0)//建立消息队列
perror("msgget");
int pid;
pid = fork();//创建过程
if(pid < 0)
perror("fork");
else if(pid == 0)
{
printf("This is A process!\n");
sprintf(mymsg.msg_str,"hello world");//将hello world写入内存
if(msgsnd(qid,&mymsg,128,0) < 0)//将消息送入消息队列
perror("msgsnd");
}
else
{
if(fork() == 0)
{
printf("This is B process!\n");
if(msgrcv(qid,&mymsg,128,0,0) < 0)//从消息队列中读取消息
perror("msgrcv");
printf("The msg is: %s\n",mymsg.msg_str);
}
else if(fork() == 0)
{
printf("This is C process!\n");
sprintf(mymsg.msg_str,"zhangxuyang");//将zhangxuyang写入内存
if(msgsnd(qid,&mymsg,128,0) < 0)//将消息送入消息队列
perror("msgsnd");
}
else
{
printf("This is D process!\n");
if(msgrcv(qid,&mymsg,128,0,0) < 0)//从消息队列中读取消息
perror("msgrcv");
printf("The msg is: %s\n",mymsg.msg_str);
}
}
return 0;
}