我是靠谱客的博主 单身雪碧,最近开发中收集的这篇文章主要介绍linux c 消息队列实例源码演示,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

内容过程,把开发过程比较常用的内容段做个珍藏,如下的资料是关于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 消息队列实例源码演示所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部