使用指针访问 shm 结构
我有这样的ac结构:
struc str{
int values[10];
}str
在像fedora这样的posix中,我将此结构复制到共享内存的一部分(shm_open
,ftruncate
,mmap
和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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用指针:
Just use the pointer: