分配共享内存时出错

发布于 2024-11-15 12:10:20 字数 251 浏览 3 评论 0原文

我正在尝试分配大小为 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 技术交流群。

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

发布评论

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

评论(1

与之呼应 2024-11-22 12:10:20

不要使用 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().

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