mmap内存共享范例 linux

32 篇文章 0 订阅

mmap1,cpp 与mmap2.cpp 是两个独立的文件,分别是读的进程和写的进程

并且实现了进程间的通信

mmap1

#include<iostream>
#include<unistd.h>
#include<cstdlib>
#include<cstdio>
#include<fcntl.h>
#include<sys/mman.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<cstring>
const char *FILENAME = "hello";
const int SIZE = 100;
void sys_err(const char *str)
{
perror(str);
exit(-1);
}
int  main()
{
int fd = open(FILENAME,O_RDWR|O_CREAT,0664);
if(fd == -1)
{
sys_err("open");
}
lseek(fd,SIZE-1,SEEK_SET);
write(fd,"\0",1);
char *mem;
mem = static_cast<char *>(mmap(NULL,SIZE,PROT_READ|PROT_WRITE,MAP_SHARED,fd,0));
if(mem == MAP_FAILED)
{
sys_err("mmap");
}
int n = 0;
char buf[SIZE];
while(1)
{
sprintf(buf,"this is :%d\n",n++);
memcpy(mem,buf,sizeof(buf));
sleep(1);
}
close(fd);
munmap(mem,SIZE);




return 0;
}



mmap2

#include<iostream>
#include<unistd.h>
#include<cstdlib>
#include<cstdio>
#include<fcntl.h>
#include<sys/mman.h>
#include<sys/types.h>
#include<sys/stat.h>
#include<cstring>
const char *FILENAME = "hello";
const int SIZE = 100;
void sys_err(const char *str)
{
perror(str);
exit(-1);
}
int  main()
{


int fd = open(FILENAME,O_RDONLY);
if(fd == -1)
{
sys_err("open");
}
char *mem;
mem = static_cast<char *>(mmap(NULL,SIZE,PROT_READ,MAP_SHARED,fd,0));
if(mem == MAP_FAILED)
{
sys_err("mmap");
}
int n = 0;
while(1)
{
std::cout<<mem<<std::endl;
sleep(1);
}
close(fd);
munmap(mem,SIZE);




return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值