分配共享内存时出错
我正在尝试分配大小为 64B 的共享内存。但是当我给出的大小超过 27 时,编译器会抛出错误。如何解决这个问题。我正在使用 gcc 编译器。我正在服务器上运行该程序。
这是我使用的代码。
shmid=(shmget(key,size,IPC_CREAT | 0666)); // size is defined as 64
我收到一条错误消息,指出内存分配失败。但对于 27 以下的尺码来说效果很好
I am trying to allocate a shared memory of size 64B. But the compiler throws error when i give a size of more than 27.. How to solve this problem. I am using gcc compiler. I am running the program on a server.
This is the code i used.
shmid=(shmget(key,size,IPC_CREAT | 0666)); // size is defined as 64
I am getting an error saying memory allocation failed. But for size under 27 it works fine
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要使用 SysV 共享内存——该接口非常糟糕,并且有许多巨大的缺点(例如,对可以使用的内存量有严格的限制,如果应用程序崩溃,则必须手动清理)。如果需要共享内存,请使用
mmap()
。Don't use SysV shared memory -- the interface is seriously awful, and has a number of huge drawbacks (e.g, there are tight limits on how much you can use, and it has to be cleaned up manually if your application crashes). If you need shared memory, use
mmap()
.