Reputation: 325
Two processes trying to access a memory(shared region of RAM for IPC) outside of either of the processes(or both), is it a process violation ?
Upvotes: 0
Views: 72
Reputation: 39023
You haven't specified the OS and language.
In general shared memory is not outside of the processes address spaces, but rather - it exists in both address spaces. The OS takes care of that.
Upvotes: 1