Hey there!
I've two computers sharing a ramstick (so i was promised by my boss)
Linux is running realtime calculations, and windows is reading the data off the ramstick and displays it in a user-friendly format.
^^^ that's the goal.
I'm a C newb unfortunatly, so I'm learning and developing at the same time.
From what I found and what I was explained here's what I use:
Windows:
CreateFileMapping(); MapViewOfFile();
Linux:
shmget(); shmat();
But linux uses numbers and Windows uses string name for sharing it.
I'm looking for all/any help/comment that all/any of you can provide
Thanks!