Re: Writable global section?

From: Brian Gerst (bgerst@didntduck.org)
Date: Wed Oct 09 2002 - 10:06:43 EST


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/



This archive was generated by hypermail 2b29 : Tue Oct 15 2002 - 22:00:31 EST