Can multiple processes access the same memory space? How is this achievable?

Banned
21Feb2012,23:14   #1
Sage_sage's Avatar
Can multiple processes access the same memory space? How is this
achievable?
John Hoder
29Feb2012,12:53   #2
Scripting's Avatar
Of course they can! This is achievable the programmatical way, I dont know what you exactly want, but you may have a look here: http://www.go4expert.com/showthread.php?t=27761
Go4Expert Member
18Feb2013,16:49   #3
_eb75_'s Avatar
As an illustrative example from Linux we can take a part from a manual page. The method with other operating systems is pretty the same.
An application can ask shared memory with an other application from OS.
-----------------------------------
shmget - allocates a shared memory segment int shmget(key_t key, size_t size, int shmflg);

shmget() returns the identifier of the shared memory segment associated with the value of the argument key. A new shared memory segment, with size equal to the value of size rounded up to a multiple of PAGE_SIZE, is created if key has the value IPC_PRIVATE or key isn't IPC_PRIVATE, no shared memory segment corresponding to key exists, and IPC_CREAT is specified in shmflg.
.........................