我是靠谱客的博主 单身雪碧,这篇文章主要介绍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;

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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内容请搜索靠谱客的其他文章。

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

评论列表共有 0 条评论

立即
投稿
返回
顶部