在C中使用多个进程间通信队列

发布于 2025-01-16 19:42:45 字数 1009 浏览 0 评论 0原文

我正在尝试在 C 中使用多个不同的消息队列在 Linux 上的不同进程之间进行通信。我用的是systemd。

请参阅下面我的代码了解一个过程。为什么在这种情况下 msgid1msgid2 的值完全相同?

这不是意味着队列是相同的吗?

我希望我在这里创建不同的队列。

#include <stdio.h>
#include <stdlib.h>
#include <sys/ipc.h>
#include <sys/msg.h>

int main()
{
    struct buffer1
    {
        long mesg_type;
        int num;
    }message1;

    struct buffer2
    {
        long mesg_type;
        char text[20];
    }message2;

    key_t key1;
    key_t key2;

    int msgid1;
    int msgid2;

    // ftok to generate unique key
    key1 = ftok("test1",1);
    key2 = ftok("test2",2);

    msgid1 = msgget(key1, 0666 | IPC_CREAT);
    msgid2 = msgget(key2, 0666 | IPC_CREAT);

    // printf("%d  %d", msgid1 , msgid2 ); -- msgid1  and msgid2 are the same values

    //msgrcv(msgid1, &message1, sizeof(message1), 1, 0);
    //msgrcv(msgid2, &message2, sizeof(message2), 1, 0);
}

编辑:为了简单起见,我在这里删除了对函数调用的错误检查。在这种情况下没有错误。

I am trying to use multiple different message queues in C for communicating between different processes on Linux. I use systemd.

See my code below for one process. Why is it that msgid1 and msgid2 are the exact same value in this case?

Doesn't this then mean that the queues are the same?

I would expect that I am creating different queues here.

#include <stdio.h>
#include <stdlib.h>
#include <sys/ipc.h>
#include <sys/msg.h>

int main()
{
    struct buffer1
    {
        long mesg_type;
        int num;
    }message1;

    struct buffer2
    {
        long mesg_type;
        char text[20];
    }message2;

    key_t key1;
    key_t key2;

    int msgid1;
    int msgid2;

    // ftok to generate unique key
    key1 = ftok("test1",1);
    key2 = ftok("test2",2);

    msgid1 = msgget(key1, 0666 | IPC_CREAT);
    msgid2 = msgget(key2, 0666 | IPC_CREAT);

    // printf("%d  %d", msgid1 , msgid2 ); -- msgid1  and msgid2 are the same values

    //msgrcv(msgid1, &message1, sizeof(message1), 1, 0);
    //msgrcv(msgid2, &message2, sizeof(message2), 1, 0);
}

EDIT : I have removed the error checking on function calls here for simplicity. There are no errors in this case.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文