文章详情

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

请输入下面的图形验证码

提交验证

短信预约提醒成功

IPC之System V vs POSIX

2023-08-30 15:57

关注

当谈到IPC(Inter-Process Communication,进程间通信)时,它是指不同进程之间进行数据交换和通信的机制。
它允许在操作系统中运行的不同进程之间传输数据,这些进程可以是在同一台计算机上运行的不同应用程序,也
可以是在不同计算机上运行的不同应用程序。

IPC有多种实现方式,包括管道、消息队列、共享内存、信号量、套接字等。每种方式都有自己的特点和适用场景。

Linux 提供有SystemV 和 POSIX 两种接口:
SYSTEM V的接口使用时间比较久,应用广泛,很多旧的产品功能采用;
POSIX的接口设计较好,学习使用都比较容易。

个人觉得如果是新的代码还是采用POSIX接口比较好。

system V 的IPC (消息队列、信号量、共享内存)
https://man7.org/linux/man-pages/man7/sysvipc.7.html

POSIX IPC 的是各种IPC分开说明的
https://man7.org/linux/man-pages/man7/mq_overview.7.html 消息队列
https://man7.org/linux/man-pages/man7/sem_overview.7.html 信号量
https://man7.org/linux/man-pages/man7/shm_overview.7.html 共享内存

看以上的文档基本上就够了。

附上POSIX的标准
https://pubs.opengroup.org/onlinepubs/9699919799/

共享内存

通过以下示例,可以了解一下POSIX与SystemV 的接口区别。

POSIX shm

// 一个主进程,负责往共享内存中写数据#include #include         #include            #include #include #include #include int main(int argc, char **argv){int ret;int fd;    char *m;    int *t;fd = shm_open("/somename", O_CREAT | O_RDWR, DEFFILEMODE);      if (fd < 0) {        printf("shm open fail. %s\n", strerror(errno));        return -1;    }    if (ftruncate(fd, 4) < 0) {        printf("ftruncate fail.\n");        goto error;    }    m = mmap(NULL, 4, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);    if (m == MAP_FAILED) {        printf("mmap error");        goto error;    }    t = (int *)m;    *t = 0;    while (1) {        (*t)++;        sleep(1);    }    munmap(m, 4);error:    close(fd);    shm_unlink("/somename");return 0;}
// 另一个进程,读取共享内存的数据#include #include         #include            #include #include int main(int argc, char **argv){int ret;int fd;    char *m;    int *t;fd = shm_open("/somename", O_RDWR, 0);    if (fd < 0) {        printf("shm open fail.\n");        return -1;    }    m = mmap(NULL, 4, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);    if (m == MAP_FAILED) {        printf("mmap error");        goto error;    }    t = (int *)m;    while (1) {        printf("read %d\n", *t);        sleep(2);    }    munmap(m, 4);error:    close(fd);    shm_unlink("/somename");return 0;}

System V shm

// 进程1 写入共享内存数据#include #include         #include            #include #include #include #include #include #include int main(int argc, char **argv){    int shmid;    key_t key = 0x1234;    char *addr;    int *val;    shmid = shmget(key, 4, IPC_CREAT | DEFFILEMODE);    if (shmid < 0) {        printf("shmget fail\n");        return -1;    }    printf("get id %d\n", shmid);    addr = shmat(shmid, NULL, 0);    if (addr == (void *)-1) {        printf("shmat fail. %s\n", strerror(errno));        goto error;    }    val = (int *)addr;    *val = 0;    while (1) {        (*val)++;        sleep(1);    }error:    shmctl(shmid, IPC_RMID, NULL);    return -1;}
// 读取共享内存数据#include #include         #include            #include #include #include #include #include #include int main(int argc, char **argv){    int shmid;    key_t key = 0x1234;         char *addr;    int *val;    shmid = shmget(key, 4, 0);    if (shmid < 0) {        printf("shmget fail\n");        return -1;    }    printf("read id %d\n", shmid);    addr = shmat(shmid, NULL, 0);    if (addr == (void *)-1) {        printf("shmat fail.\n");        goto error;    }    val = (int *)addr;    while (1) {        printf("read %d\n", *val);        sleep(2);    }error:    shmctl(shmid, IPC_RMID, NULL);    return -1;}

来源地址:https://blog.csdn.net/todo_cct/article/details/132496486

阅读原文内容投诉

免责声明:

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

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

软考中级精品资料免费领

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

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

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

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

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

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

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