Re: Writable global section?

Brian Gerst (bgerst@didntduck.org)
Wed, 09 Oct 2002 11:06:43 -0400


Richard B. Johnson wrote:
> I would like to be able to write to that variable and have it seen
> by other tasks, since shared memory is shared memory. It's a shame
> to mmap a shared library upon startup and then have to mmap some
> additional shared memory for some inter-process communication.

There are only two ways to share memory between processes:
- SYSV shared memory
- using clone() to share the VM.

Shared libraries != shared memory. Each mapping of a shared library is
copy-on-write. The purpose of shared libraries is to save memory, not
for IPC.

--
				Brian Gerst

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/