1 Star 0 Fork 14

CoffCat/Linux_commom_ipc_interface

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
shm_main.cpp 945 Bytes
一键复制 编辑 原始数据 按行查看 历史
codeheng 提交于 2015-02-04 20:05 . new file
#include <iostream>
#include "commom_ipc.h"
#include <pthread.h>
#include <cstdio>
using namespace std;
#define KEY 0x12345678
void *thread1(void *arg)
{
ShareMemory my_shm(KEY);
ShareMemoryData shm;
shm.valid_size = 20;
memcpy(shm.buffer, "Hello, World!", shm.valid_size);
my_shm.set_shm(&shm);
return (void*)0;
}
void *thread2(void *arg)
{
sleep(1);
ShareMemory my_shm(KEY);
ShareMemoryData shm;
my_shm.get_shm(&shm);
cout<< "valid_size: "<<shm.valid_size<<endl;
cout<< "buffer: "<<shm.buffer<<endl;
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/coffcat/Linux_commom_ipc_interface.git
git@gitee.com:coffcat/Linux_commom_ipc_interface.git
coffcat
Linux_commom_ipc_interface
Linux_commom_ipc_interface
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385