使用指针访问 shm 结构

发布于 2024-12-14 20:21:23 字数 289 浏览 3 评论 0原文

我有这样的ac结构:

struc str{
  int values[10];
}str

在像fedora这样的posix中,我将此结构复制到共享内存的一部分(shm_openftruncatemmap和memcpy),我从shm得到了一个指向结构的指针。现在如何使用此指针 (*ptr) 更改值数组中的值。

想象一下我想做 str->values[5] = 10;如何使用指针来做到这一点。

I have a c structure like this :

struc str{
  int values[10];
}str

In a posix so like fedora i copied this structure to a part of shared memory (shm_open, ftruncate, mmap and memcpy) and I got a pointer to structure from shm. Now how do I change a value in the values array by using this pointer (*ptr).

Imagine i want to do str->values[5] = 10; how to I do that using the pointer.

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

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

发布评论

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

评论(1

赴月观长安 2024-12-21 20:21:23

只需使用指针:

struct str *p = ptr;
p->values[5] = 10;

Just use the pointer:

struct str *p = ptr;
p->values[5] = 10;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文