文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Linux系统编程—共享内存之mmap

2024-12-10 16:17

关注

共享内存是通信效率最高的IPC方式,因为进程可以直接读写内存,而无需进行数据的拷备。但是它没有自带同步机制,需要配合信号量等方式来进行同步。

[[345034]]

共享内存被创建以后,同一块物理内存被映射到了多个进程地址空间,当有一个进程修改了共享内存的数据,其余的进程均可看见所修改的内容,反之亦然。

mmap函数

函数原型:

  1. void mmap(void adrr, size_t length, int prot, int flags, int fd, off_t offset); 

返回值:

具体参数含义:

mumap函数

函数原型:

  1. int munmap(void *addr, size_t length); 

函数作用:

如同malloc之后需要free一样,mmap调用创建的映射区使用完毕之后,需要调用munmap去释放。

例程

写进程:

  1.  #include <stdio.h> 
  2.  #include <sys/mman.h> 
  3.  #include <sys/types.h> 
  4.  #include <sys/stat.h> 
  5.  #include <fcntl.h> 
  6.  #include <unistd.h> 
  7.  #include <string.h> 
  8.   
  9.  typedef struct 
  10. {11    int id; 
  11.     char name[20]; 
  12.     char gender; 
  13. }stu; 
  14.  
  15. int main(int argc, char *argv[]) 
  16.     stu *p = NULL
  17.     int fd = 0
  18.     stu student = {10, "harry", 'm'}; 
  19.  
  20.    if (argc < 2) { 
  21.         printf("useage: ./a.out file\n"); 
  22.         return -1; 
  23.     } 
  24.  
  25.     fd = open(argv[1], O_RDWR | O_CREAT, 0664); 
  26.     if (fd == -1) { 
  27.         printf("ERROR: open failed!\n"); 
  28.         return -1; 
  29.     } 
  30.     ftruncate(fd, sizeof(stu)); 
  31.  
  32.     p = mmap(NULL, sizeof(stu), PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); 
  33.     if (p == MAP_FAILED) { 
  34.         printf("ERROR: mmap failed!\n"); 
  35.         return -1; 
  36.     } 
  37.  
  38.     close(fd); 
  39.  
  40.     while (1) { 
  41.         memcpy(p, &student, sizeof(stu)); 
  42.         student.id++; 
  43.         sleep(2); 
  44.     } 
  45.     munmap(p, sizeof(stu)); 
  46.  
  47.     return 0; 

读进程:

  1.  #include <stdio.h> 
  2.  #include <sys/mman.h> 
  3.  #include <sys/types.h> 
  4.  #include <sys/stat.h> 
  5.  #include <fcntl.h> 
  6.  #include <unistd.h> 
  7.   
  8.  typedef struct 
  9.  { 
  10.     int id; 
  11.     char name[20]; 
  12.     char gender; 
  13. }stu; 
  14.  
  15. int main(int argc, char *argv[]) 
  16.     stu *p = NULL
  17.     int fd = 0
  18.  
  19.     if (argc < 2) { 
  20.         printf("useage: ./a.out file\n"); 
  21.         return -1; 
  22.     } 
  23.  
  24.     fd = open(argv[1], O_RDONLY); 
  25.     if (fd == -1) { 
  26.         printf("ERROR: open failed!\n"); 
  27.         return -1; 
  28.     } 
  29.  
  30.     p = mmap(NULL, sizeof(stu), PROT_READ, MAP_SHARED, fd, 0); 
  31.     if (p == MAP_FAILED) { 
  32.         printf("ERROR: mmap failed!\n"); 
  33.         return -1; 
  34.     } 
  35.  
  36.     close(fd); 
  37.  
  38.     while (1) { 
  39.         printf("id = %d, name = %s, gender = %c\n", p->id, p->name, p->gender); 
  40.         sleep(2); 
  41.     } 
  42.  
  43.     munmap(p, sizeof(stu)); 
  44.  
  45.     return 0; 

本文授权转载自公众号「良许Linux」。良许,世界500强外企Linux开发工程师,公众号里分享大量Linux干货,欢迎关注!

 

来源:今日头条内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯