On Fri, Oct 24, 2008 at 9:13 AM, Alan Nisota alannisota@gmail.com wrote:
So I'd be happy to have a win32 app that can talk to linux via shared memory (I also need semaphores, but that could likely be handled via socket communication) but I don't think this is possible
There ought to be a way.
For starters, have you tried CreateFileMapping in wine, and mmap on the same file in the native bit? Sadly, linux does not use tmpfs by default, so the backing store writes would probably hurt performance. But it would be interesting to hear whether this worked at all.