Access to one program from another

Started by
14 comments, last by SimonForsman 12 years, 8 months ago
Hi,

I wonder if it is possible that two or more applications can have access to the same part of memory.
Lets say I have one program that allocates and fills part of memory with some objects.
And I would like another program to be able to read, modify and write this part of memory.

Is there any name for such technology, some libs, tutorials?

Regards,
Misery
Advertisement

Is there any name for such technology,

I think you are searching "Shared memory". The functionality is typically provided by the operation system api.
Now do you really want to directly share the memory or do you just want access to the date there? There is a HUGE difference in the two.

Is there any name for such technology
[/quote]
Its called the filesystem.

I wonder if it is possible that two or more applications can have access to the same part of memory.
Lets say I have one program that allocates and fills part of memory with some objects.
And I would like another program to be able to read, modify and write this part of memory.


Memory is not localized. Entire memory is accessible at any time.

The mere concept of "application" or more accurately, process, is something that is arbitrarily defined by each operating system or runtime system. No such limitation exists when it comes to memory itself.

So a question needs more detail - which OS, which language and what kind of sharing?

Hi,

I wonder if it is possible that two or more applications can have access to the same part of memory.
Lets say I have one program that allocates and fills part of memory with some objects.
And I would like another program to be able to read, modify and write this part of memory.

Is there any name for such technology, some libs, tutorials?

Regards,
Misery


As a suggestion, look at the following: http://www.boost.org/doc/libs/1_47_0/doc/html/interprocess.html I'm not a huge fan of boost but for this particular item and a couple others I have no interest in writing such things myself and this is a very reasonable solution so long as you don't have to debug it yourself. I've used this for a shared resource system in cooperative server processes quite successfully and the performance was exceptional and I didn't run into any notable bugs. I think the largest problem I had was proper cleanup given the different Os scoping issues with releasing of the shared memory, all easily dealt with but a pain if you don't think about it up front.

[quote name='Misery' timestamp='1313850744' post='4851603']
I wonder if it is possible that two or more applications can have access to the same part of memory.
Lets say I have one program that allocates and fills part of memory with some objects.
And I would like another program to be able to read, modify and write this part of memory.


Memory is not localized. Entire memory is accessible at any time.

The mere concept of "application" or more accurately, process, is something that is arbitrarily defined by each operating system or runtime system. No such limitation exists when it comes to memory itself.

So a question needs more detail - which OS, which language and what kind of sharing?
[/quote]

This is not entirely true, your application is most likely in its own virtual address space (that is why two applications with the same entry point address can run simultaneously). So the OS is able to address physical memory in a linear way however your application is bound to his virtual address space and an other applications virtual address space would have to mapped to your virtual address space resulting in a different address for the same data (say app1 has code at 0xDEADBEEF and wants to access address 0xDEADBEEF of app2 it will have to be mapped at an other address then the original address). This is not really a problem unless the data you are trying to access contains pointers to addresses within this mapped memory (or even worse inside app2's private memory, then there is no way to know what will happen the address could be perfectly legal and pointing to valid data in app1 resulting in unpredictable results).


This is not entirely true, your application is most likely in its own virtual address space


Which is a concept defined by operating and applies to concept of process.

The the request for details on OS, language, platform, the more the better.

There simply is no generic answer on how to share memory.
In more detail:

lets say first application makes a vector of integers:

int A=new int[100];
for (int i=0;i<100;i++) A=ARandomNumber();



And the second application is supposed to count a sum of the elements of A and fill it with new numbers:

int s=0;
for (int i=0;i<100;i++)
{
s+=A;
A=AnotherRandomNumber();
}


This would be supposed to work on Windows 7, but solution for Debian would be cool as well.
The first application could probably put out to an output stream an address to A or something...
:D
Addresses are meaningless between different processes.

A unix solution to this problem would be for the first application to write the array to stdout, and the second application to sum the integers arriving on stdin. You would combine them by using the shell to pipe the output from the first program to the second.

This topic is closed to new replies.

Advertisement