Tagged Questions
The interprocess tag has no wiki summary.
18
votes
11answers
1k views
any good and simple RPC library for inter-process calls?
I need to send a (probably one) simple one-way command from client processes to server process with arguments of builtin C++ types (so serialization is pretty simple). C++, Windows XP+.
I'm looking ...
8
votes
4answers
520 views
can a python script know that another instance of the same script is running… and then talk to it?
I'd like to prevent multiple instances of the same long-running python command-line script from running at the same time, and I'd like the new instance to be able to send data to the original instance ...
7
votes
1answer
225 views
boost::interprocess memory allocator on anonymous segment
I'm trying to use an mmap-like segment to allocate objects on stl containers, for that I'm using boost::interprocess which provides with memory mappings, allocators and anonymous memory mapping ...
7
votes
4answers
710 views
Java TCP/IP Socket Latency - stuck at 50 μs (microseconds)? (used for Java IPC)
We have been profiling and profiling our application to get reduce latency as much as possible. Our application consists of 3 separate Java processes, all running on the same server, which are ...
7
votes
1answer
8k 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 program which can be run ...
6
votes
3answers
116 views
Should sockets be kept open or torn down [closed]
Possible Duplicate:
Should I close a socket (TCPIP) after every transaction?
Lets say I have some type of interprocess communication that works using sockets.
Should my processes ...
6
votes
2answers
770 views
Is there a difference between boost iostream mapped file and boost interprocess mapped file?
I want to create a mapped binary file into memory; however I am not sure how to create the file to be mapped into the system. I read the documentation several times and realize there are 2 mapped file ...
6
votes
8answers
888 views
What is the best way to do application data exchange in Delphi without sockets?
I need a few of my related applications to communicate to each other (exchange data and initiate actions). Requirements are without packages and no sockets. So I guess that leaves named pipes, ...
6
votes
4answers
7k views
What is the simplest method of inter-process communication between 2 C# processes?
I want communicate between a parent and child process both written in C#. It should be asynchronous, event driven. I does not want run a thread in every process that handle the very rare ...
5
votes
2answers
178 views
What available message solutions are there for inter-process communication in ruby?
I have a rails app using delayed_job. I need my jobs to communicate with each other for things like "task 5 is done" or "this is the list of things that need to be processed for task 5".
Right now I ...
5
votes
2answers
535 views
How much memory should 'managed_shared_memory' allocate? (boost)
I'm looking for a definitive answer (if indeed one exists) on how much memory should be allocated when creating a static chunks of shared memory via boost::interprocess's managed_shared_memory. Even ...
5
votes
3answers
238 views
Snoop interprocess communications
Has anyone tried to create a log file of interprocess communications? Could someone give me a little advice on the best way to achieve this?
5
votes
1answer
2k views
Using C++ Boost memory mapped files to create disk-back data structures
I have been looking into using Boost.Interprocess to create a disk-backed data structure. The examples on Boost Documentation (http://www.boost.org/doc/libs/1_41_0/doc/html/interprocess.html) are all ...
4
votes
1answer
71 views
Socket communication between server app and Matlab client using Java
I have a written C++ server app that I would like to be able to control from Matlab. I have used a mex function for socket communication so far, but I would like to ditch the mex function and use ...
4
votes
5answers
386 views
How can I marshal an out-of-process COM reference across process boundaries?
I have an out-of-process COM server that needs to keep an eye on things. This server runs as a service and is, internally, a singleton. For simplicity sake, I will call him BossCom.
I have another ...
4
votes
0answers
274 views
What are the limits of using sockets for Inter-Process Communication?
I am creating a Firefox extension that allows using Standard ML (SML) as a client-side programming language in Firefox. The way it works is the following:
The extension launches a PolyML process ...
4
votes
2answers
139 views
Talking to unmanaged process from .NET
I'm creating a process from .NET using Process.Start. The new process is a legacy app, written in C/C++. To communicate with it, I need to do the equivalent of PostThreadMessage to its primary thread.
...
4
votes
4answers
680 views
File Locking vs. Semaphores
Just out of curiosity, what is the preferred way to achieve interprocess synchronization on Linux? The sem*(2) family of system calls seem to have a very clunky and dated interface, while there are ...
3
votes
0answers
118 views
Boost.Interprocess: testcase gives different results if compiled with or without optimization (GCC)
I'm having some troubles with Boost.Interprocess allocators when compiling with optimization. I managed to get this down to a 40 lines testcase, most of which is boilerplate. Just have a look at ...
3
votes
2answers
171 views
lock freedom/atomic operations across 2 processes instead of threads
I am sharing some data across multiple processes by using shared memory; I use inter processes mutexes to achieve synchronization.
My question is the following: is it possible to use lock-free data ...
3
votes
1answer
120 views
pipe, fork, and non-blocking IPC
So I was trying to run a system command (or exec, or whatever) at a child process after a fork(), and push some input to it, and then get its output. It looks like this after the fork(), and pc and cp ...
3
votes
4answers
158 views
Java app & C++ app integration / communication
We have two code bases, one written in C++ (MS VS 6) and another in Java (JDK 6).
Looking for creative ways to make the two talk to each other.
More Details:
Both applications are GUI ...
3
votes
1answer
438 views
What's the most efficient node.js inter-process communication library/method?
We have few node.js processes that should be able to pass messages,
What's the most efficient way doing that?
How about using node_redis pub/sub
EDIT: the processes might run on different machines
3
votes
1answer
266 views
boost::interprocess::scoped_lock application crash inside lock
I'm using boost::interprocess::scoped_lock, if the application crash for some reason inside the scope the mutex isn't released.
Next time the application is executed (without restarting the computer), ...
3
votes
3answers
129 views
C# - 2 clientside programs trading variable information — is there a better way?
I am attempting to send player information from my Game to my network client to then be sent off to the server.
Currently the ClientNetwork -> ClientGame relationship is held with XML files. They ...
3
votes
2answers
163 views
Class design for self-linked classes with generic pointer type
I am currently modifying a complex class that has nodes pointing to themselves just like linked lists or graphs. I want it to be used in shared memory using boost::interprocess functions. Now I am ...
3
votes
2answers
335 views
C++ application: Is it possible to pass accepted TCP connection from one process to another?
So I wonder - is it possible to pass accepted TCP connection (on Windows or Unix like OS) from one process to another? Here the point is to pass connection - not data in a way a proxy app would.
3
votes
1answer
374 views
Transfer a pointer through boost::interprocess::message_queue
What I am trying to do is have application A send application B a pointer to an object which A has allocated on shared memory ( using boost::interprocess ). For that pointer transfer I intend to use ...
3
votes
1answer
592 views
c++ boost::interprocess simple application
I want to write a simple application with boost that passes string object to other process. It compiles well, but when i try to print out string from second process, following messages are put to ...
3
votes
1answer
203 views
Cross-process singleton object
This is a variation on another Q of mine. I have two applications, X and Y. They have to share a single COM object between them. X will be sending data to this object and Y will respond on events sent ...
3
votes
3answers
1k views
Should I use CORBA, MessagePack RPC or Thrift, or something else entirely?
I'm writing software for a new hardware device which I want any kind of new third-party application to be able to access if they want to.
The software will be a native process (C++) that should be ...
3
votes
3answers
257 views
Multiple python scripts sending messages to a single central script
I have a number of scripts written in Python 2.6 that can be run arbitrarily. I would like to have a single central script that collects the output and displays it in a single log.
Ideally it would ...
3
votes
4answers
605 views
What interprocess locking calls should I monitor?
I'm monitoring a process with strace/ltrace in the hope to find and intercept a call that checks, and potentially activates some kind of globally shared lock.
While I've dealt with and read about ...
3
votes
1answer
917 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 with the User32.dll ...
3
votes
4answers
345 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 parent. This caused ...
3
votes
5answers
3k views
Pass a message to another exe from an exe C#
I have two exe running, c# console programs. From one, I need to tell the second exe to do something? How... ? I looked at
...
3
votes
2answers
1k views
How can I load the AIR runtime as a in-process shared library from a C program
I'd like to build a special AIR launcher program in C along the lines of java.exe.
I've looked at running AIR programs with a process viewer and was able to locate the AIR runtime DLL that is being ...
3
votes
1answer
3k views
Boost Message Queue not based on POSIX message queue? Impossible to select(2)?
I thought I'd use Boost.Interprocess's Message Queue in place of sockets for communication within one host. But after digging into it, it seems that this library for some reason eschews the POSIX ...
2
votes
3answers
42 views
PHP async process communication
Is there a way to achieve inter-process (or threading) communication in PHP, but still keep everything run asynchronous?
I want to have a script that creates 4 processes and then terminates ...
2
votes
2answers
97 views
Is there an API in C++ for remote inter-process communication?
I'm looking for the equivalent of RMI API (in java) in C++ standards. The processes will be running in different machines.
Any clues ?
Thanks
2
votes
3answers
44 views
Architecture: How to serve multiple COM interfaces that access a shared resource
I have an architectural question. I have a project that is conceptually something like this:
This seems quite straightforward but there are wrinkles. Some background, by way of a partly fictitious ...
2
votes
1answer
58 views
Do I have to close inherited handle later owned by child process?
Microsoft played safe here. In their article, "Creating a Child Process with Redirected Input and Output", they are saying:
The remaining open handles are cleaned up when this process terminates.
...
2
votes
2answers
249 views
Is it possible to share a Cuda context between applications?
I'd like to pass a Cuda context between two independent Linux processes (using POSIX message queues, which I already have set up).
Using cuCtxPopCurrent() and cuCtxPushCurrent(), I can get the ...
2
votes
2answers
341 views
When doing IPC using TCP/IP sockets using the loopback address, do common networking stacks skip framing the message in lower-level PDUs?
In some environments such as Java, it's natural to use TCP/IP sockets to pass messages between processes on the same host using the 'localhost' address (127.0.0.1 in IPv4, or . (Because Java tends ...
2
votes
2answers
271 views
In-Proc COM object sharing across another Process
Before I ask this question I would like to make it clear that I know there are libraries and techniques for Inter process communcation. This though, is a learning question about COM.
I also do know ...
2
votes
4answers
168 views
Two WinForms applications
I have 2 different C# programs, both of them contain a form application.
How can I run both these 2 programs in one of them?
I added, using the existing project option, progr1 in program 2.
Now I ...
2
votes
2answers
213 views
What is a Hardware Semaphore?
How can it be used from software if it is a hardware semaphore? Is it that there is a software API which is actually implemented in HW?
I ask as I am implementing firmware to interface to some ...
2
votes
2answers
319 views
Android Remote methods (AIDL) vs Intents - performance & battery usage
My team is working on an Android project which consists of several Android applications which exchange data (on the same phone). The idea is to have several applications which are collecting some data ...
2
votes
3answers
423 views
Process.Start vs Process `p = new Process()` in C#?
As is asked in this post, there are two ways to call another process in C#.
Process.Start("hello");
And
Process p = new Process();
p.StartInfo.FileName = "hello.exe";
p.Start();
p.WaitForExit();
...
2
votes
1answer
413 views
HP QTP (VbScript): work with Java-objects (like DotNetFactory for .NET classes)
is there any way to work with Java classes in the same of similar way (create, call methods)?
QTP provide such support for .NET classes via dotNetFactory. Is there anything like that for Java?
...