Solaris 中父进程和子进程之间共享内存(C 语言)

发布于 2024-09-30 17:18:45 字数 189 浏览 7 评论 0原文

我只是在寻找一个简单的教程/示例来引导我走向正确的方向,我似乎找不到一个好的简单的教程/示例。

我正在寻找一个教程,解释如何在 UNIX (Solaris) 中的 C 语言中的父进程和子进程(使用 fork)之间共享内存(不使用管道和文件,而是实际内存)。

我非常感谢您的帮助,

谢谢非常喜欢,

贾里

I am just looking for a simple tutorial/example to put me in the right direction, I cannot seem to find a good simple one.

I am looking for a tutorial that explains how to share memory (not using pipes and files, but actual memory) between a parent and a child (using fork) process in UNIX (Solaris) in C.

I really appreciate your help,

Thank you very much,

Jary

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

将军与妓 2024-10-07 17:18:45

您必须选择:

  • 您可以先分配并附加共享内存,然后执行分叉。

  • 您可以分配共享内存,分叉子进程,然后附加到两个进程中的共享内存。

第一个选择可能更容易。它可能如下所示:

#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>

....

int size = 32000;

/* allocate and attach shared memory */
int shmID = shmget(IPC_PRIVATE, size, 0600);
void* shmPtr = shmat(shmId, NULL, 0);

/* fork child process */
pid_t pID = fork();
if (pID == 0)
{
    /* child */
    ... do something with shmPtr ...

    /* detach shared memory */
    shmdt(shmPtr);
}
else
{
    /* parent */
    ... do something with shmPtr ...

    /* detach shared memory */
    shmdt(shmPtr);
}

You have to options:

  • You can allocate and attach the shared memory first and then do the fork.

  • You can allocate the shared memory, fork the child process and then attach to the shared memory in both processes.

The first option is probably easier. It could look as follows:

#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>

....

int size = 32000;

/* allocate and attach shared memory */
int shmID = shmget(IPC_PRIVATE, size, 0600);
void* shmPtr = shmat(shmId, NULL, 0);

/* fork child process */
pid_t pID = fork();
if (pID == 0)
{
    /* child */
    ... do something with shmPtr ...

    /* detach shared memory */
    shmdt(shmPtr);
}
else
{
    /* parent */
    ... do something with shmPtr ...

    /* detach shared memory */
    shmdt(shmPtr);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文