概述
内容过程,把开发过程比较常用的内容段做个珍藏,如下的资料是关于linux c 消息队列实例演示的内容,希望能对小伙伴有一些好处。
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <stdio.h>
#include <string.h>
int main()
{
key_t unique_key;
int msgid;
int status;
char str1[]={"test message:hello muge0913"};
char str2[]={"test message:goodbye muge0913"};
struct msgbuf
{
long msgtype;
char msgtext[1024];
}sndmsg,rcvmsg;
if((msgid = msgget(IPC_PRIVATE,0666))==-1)
{
printf("msgget error!n");
exit(1);
}
sndmsg.msgtype =111;
sprintf(sndmsg.msgtext,str1);
{
printf("msgsnd error!n");
exit(1);
}
sndmsg.msgtype =222;
sprintf(sndmsg.msgtext,str2);
{
printf("msgsnd errorn");
exit(1);
}
{
printf("msgrcv errorn");
exit(1);
}
printf("The receved message:%sn",rcvmsg.msgtext);
msgctl(msgid,IPC_RMID,0);
exit(0);
}
最后
以上就是单身雪碧为你收集整理的linux c 消息队列实例源码演示的全部内容,希望文章能够帮你解决linux c 消息队列实例源码演示所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复