Tagged Questions
The inter-process tag has no wiki summary.
6
votes
2answers
318 views
How to choose a fixed address for shared memory mapping
I would like to use shared memory between several processes, and would like to be able to keep using raw pointers (and stl containers).
For this purpose, I am using shared memory mapped at a fixed ...
5
votes
2answers
75 views
How do I send code ( a class in this case) to a server/program and receive output
Here is the situation:
I have a huge data set that I need quick access to. It's a financial data set so basically the way it's set up is that at each point in time, you have data for thousands of ...
3
votes
4answers
169 views
How do I obtain a handle on an object from another .NET process?
In C#, I know how to run a .NET executable from code and also find out if an instance of the executable is already running. What I would like to do is if an instance is already running, obtain an ...
1
vote
3answers
278 views
How does Linux Kernel assigns memory pointers when a process uses shm_open()?
I'm on Linux 2.6 and I have a weird problem. I have 3 concurrent processes (forked from the same process) which need to obtain 3 DIFFERENT shared memory segments, one for each process. Each of the ...
1
vote
1answer
213 views
Interprocess communication with Lua and C#
I have an application in Lua, I want to communicate between the Lua application and a C# program.
I know of several ways to do this in C# (sockets, OS pipes etc) but I can't find any information ...
1
vote
1answer
121 views
How do I snoop on another processes memory from .Net?
I'd like to attach to another process from a .Net console app and explore the data area. Specifically I would like to attach to the 'Spider Solitaire' app in Windows Vista as I am interested in seeing ...
0
votes
1answer
229 views
Win32API.OpenFileMapping Throws Access Violation Exception From IE ToolBar
We are trying to Memory Mapping File Technique to share some information across the processes
But when we use this in one of our component which is IE Toolbar it throws access violation exception ...
0
votes
0answers
495 views
vb.net inter-process communication
Following the instructions in http://anoriginalidea.wordpress.com/2007/08/09/simple-inter-process-communication-in-vbnet/ word for word, I somehow keep stumbling across an error:
Exception has been ...
0
votes
2answers
73 views
Exposing a function to other processes
I'm using this piece of code that exposes a simple function using a socket:
while (true) {
try {
ServerSocket serverSocket = new ServerSocket(7070);
Socket clientSocket = ...