Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我最终得到一个指向 shmget 中提到的大小的共享内存的指针。如果该大小是在运行时确定的。例如对于包含将在运行时确定的矩阵的结构。我得到一个指向该结构的指针。那么如何为单个矩阵分配内存?
您必须自己管理共享内存。你得到了一大块,然后你必须把它打包并分发出去并自己跟踪它 - 或者使用某种方便的图书馆。