Sharing memory between two processes (C, Windows)

前端 未结 7 2064
温柔的废话
温柔的废话 2020-11-27 03:06

Since I haven\'t found an answer to the question asked previously here I\'m trying a different approach.

Is there any way to share memory between two processes?

7条回答
  •  攒了一身酷
    2020-11-27 03:14

    Did you try to use pipes (for memory) or even serialization (for your objects)? You can use files to manage memory between processes. Sockets are also good to get communication between processes.

提交回复
热议问题