如果已经分配了一些内存(例如使用malloc
),那么可以将该内存与另一个进程共享,例如将页面标记为共享吗?
要明确的是,这与最初将内存分配为共享内存不同,例如使用shmget
等。显然可以使用memcpy
执行此操作,但有没有办法直接执行此操作?
答案 0 :(得分:2)
mmap() creates a new mapping in the virtual address space of the calling process.
The starting address for the new mapping is specified in addr.
The length argument specifies the length of the mapping.
所以我想: