0
votes
1answer
38 views
How to start to implement a drag and drop between different processes in C#?
The application that I am developing is a windows form application written in C#. It has a treeview on it. Each of the treeNode stores some data. What I want to do is to open two …
1
vote
2answers
94 views
Linux inter-process reentrant semaphore
I'm porting a Windows application to Linux and I have a synchronization problem.
In Windows I'm using a system-level named mutex to sync access to a shared memory block.
How do I …
1
vote
2answers
49 views
Marshalling structs from WM_COPYDATA messages
I am trying to get a C# WPF application to communicate with another application written in C using WM_COPYDATA. The C app is trying to send a struct as follows:
typedef struct
{
…
2
votes
3answers
390 views
boost::interprocess between Windows service and user application.
Hi,
I'm using boost::interprocess to communicates between two applications. When the two applications are launch by the same user, it works great.
When one of the application i …
1
vote
1answer
56 views
Receive WM_COPYDATA struct in WPF or Console C# app
I am writing a C# application that needs to communicate with another application written in native C. So far I have figured out how to send messages from my C# app to the C app wit …
0
votes
3answers
157 views
Limiting .NET Class to single object instance on computer boundary => “inter-process singleton”
I want to have one object of some .NET class used by multiple processes on same computer.
Having Application domains, it is not easily possible to move across that boundary, but m …
0
votes
8answers
38 views
Name of a class that wraps an external process?
What would you call a class that wraps some external process Worker (starts and stops it, reads stdin, stdout, etc.)?
WorkerFacade?
WorkerGateway?
WorkerWrapper?
0
votes
1answer
68 views
Calling a RPC function in a running Windows service (process) using Python
I have Windows service (acts as a server) that I want to test using Python scripts. This service is written in C++ and exposes several RPC functions that other services consume. I …
0
votes
6answers
56 views
Is it possible to communicate through a COM object?
Is it possible for 2 exes to communicate through a COM (ActiveX?) interface? Can a COM DLL coordinate data-sharing between 2 seperate processes?
0
votes
1answer
42 views
Invoke a method on a .NET object in another arbitrary application
I'm asking mostly out of idle curiosity.
When using TestComplete, I've noticed I can point my script at an arbitrary running .NET application, grab a control, reflect on it, and e …
0
votes
1answer
74 views
How do I create synchronization mechanisms in managed shared memory segments?
I'm trying to have 2 processes communicate via an stl container - so I've decided to use the managed shared memory. I'm trying to implement some synchronisation between them - an i …
1
vote
1answer
1k views
Using pipes in C for parent-child IPC makes program block
I am writing a server which fork()'s off a child process when it accepts a socket connection.
As the child communicates with a client, it must send some of that information back t …
0
votes
1answer
1k views
How do I perform a non-blocking fopen on a named pipe (mkfifo)?
If I have a program which creates and attempts to open a named pipe using mkfifo, how can I open a pipe for reading or writing without blocking?
Specifically, I'm writing a C prog …
0
votes
3answers
117 views
Have you ever written code that uses the procfs?
Hi,
Have you ever written (or encountered) code that uses the procfs (the Linux /proc file system) in non-trivial ways?
I have a very nice idea for a kernel patch, and I want to …
1
vote
4answers
203 views
How can I prevent the parent from blocking when writing to a child?
Recently I had a problem using (pipe |-) when I wanted to communicate between two processes.
Basically, the child process couldn't process STDIN as fast as it was filled up by par …
