1 Star 0 Fork 14

zhao_jd/Linux_commom_ipc_interface

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
msg_main.cpp 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
codeheng 提交于 2015-02-04 20:03 . new file
#include <iostream>
#include "commom_ipc.h"
#include <pthread.h>
#include <cstdio>
using namespace std;
#define KEY 0x12345678
void *thread1(void *arg)
{
Message my_msg(KEY);
MessageData msg;
msg.m_type = 1;
msg.ImportBuffer("Hello, World!");
my_msg.set_message(&msg);
my_msg.send_msg();
my_msg.recv_msg(4);
my_msg.get_message(&msg);
cout<< "type: "<<msg.m_type<<endl;
cout<< "recv: "<<msg.m_buffer<<endl;
return (void*)0;
}
void *thread2(void *arg)
{
Message my_msg(KEY);
MessageData msg;
my_msg.recv_msg(1);
my_msg.get_message(&msg);
cout<< "type: "<<msg.m_type<<endl;
cout<< "recv: "<<msg.m_buffer<<endl;
msg.m_type = 4;
msg.ImportBuffer("222222222222222");
my_msg.set_message(&msg);
my_msg.send_msg();
return (void*)0;
}
int main()
{
pthread_t id1;
pthread_t id2;
if (pthread_create(&id1, NULL, thread1, NULL) == -1)
{
printf("pthread_create failed.\n");
}
if (pthread_create(&id2, NULL, thread2, NULL) == -1)
{
printf("pthread_create failed.\n");
}
getchar();
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/zhao_jd/Linux_commom_ipc_interface.git
git@gitee.com:zhao_jd/Linux_commom_ipc_interface.git
zhao_jd
Linux_commom_ipc_interface
Linux_commom_ipc_interface
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385