首页 > 代码库 > C 语言 mmap
C 语言 mmap
/**@author cody*@date 2014-08-12*@description *//*#include <sys/mman.h>void *mmap(void *addr,size_t len,int prot,int flag,int filedes,off_t off);int munmap(void *addr,size_t len);*/#include <stdlib.h>#include <sys/mman.h>#include <fcntl.h>void MmapFile(){ int *p; int fd = open("hello",O_RDWR); if(fd < 0){ perror("open hello"); exit(1); } p = mmap(NULL,6,PROT_WRITE,MAP_SHARED,fd,0); if(p == MAP_FAILED){ perror("mmap"); } close(fd); p[0] = 0x30313233; munmap(p,6);}int main(int argc, char const *argv[]){ MmapFile(); return 0;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。