I already have an application called "old" which renders an image in which the image data is stored in form of session, and I need to read that data from this existing "old" application to an application called "new".
How do I pass this data? Do I need to get the memory address of the session and pass it to my other application?
And even if I have the memory address how do I read the entire data? It has loads of data stored.
Named pipes and all the others create a link between two processes and when one process writes to a memory location the other process reads it.
But I have a memory address of one process as an input, isn't the only thing that I have to do is just read the data from that memory address from the other process?