Is shared memory stable at the first place?
I prefer this way to inter-process/application communication because that way I don't need the overhead of parsing data.
Is there a good hello world demo on this in c/c++?
|
Is shared memory stable at the first place? I prefer this way to inter-process/application communication because that way I don't need the overhead of parsing data. Is there a good hello world demo on this in c/c++?
| ||||
|
feedback
|
|
You should check out Boost.Interprocess. It provides the functionality you need and the documentation contains instructions on how to use it. | |||||||||||
feedback
|
|
There are some issues you need to think of when using shared memory:
| |||||||
feedback
|
|
It's as stable as your code. Note that there's no parsing required with any IPC method that supports binary messages,, such as UDP datagrams, message-mode pipes, or mailslots. | |||||||||||
feedback
|
Yes.
You may be wrong.
I that you want something like Managing Memory-Mapped Files. | |||||||||||
feedback
|
|
If you're looking for a simple example, Using Shared Memory in a Dynamic-Link Library from MSDN is probably a good starting point. | |||||||
feedback
|