Top "Ipc" questions

IPC stands for Inter-process Communication and represents a set of methods for exchanging data and messages between threads and processes.

wait process until all subprocess finish?

I have a main process which creates two or more sub processes, I want main process to wait until all …

python subprocess ipc
Example of Named Pipes

How do I write a simple--bare minimum needed for it to work--test application that illustrates how to use IPC/Named …

c# ipc named-pipes
On localhost, how do I pick a free port number?

I'm trying to play with inter-process communication and since I could not figure out how to use named pipes under …

python sockets ipc port
Combining node.js and Python

Node.js is a perfect match for our web project, but there are few computational tasks for which we would …

python node.js ipc
What is the simplest method of inter-process communication between 2 C# processes?

I want to create a communication between a parent and a child process, both written in C#. It should be …

c# ipc
IPC performance: Named Pipe vs Socket

Everyone seems to say named pipes are faster than sockets IPC. How much faster are they? I would prefer to …

linux performance sockets ipc named-pipes
How do I run a Perl script from within a Perl script?

I've got a Perl script that needs to execute another Perl script. This second script can be executed directly on …

perl ipc
What is the best choice for .NET inter-process communication?

Should I use Named Pipes, or .NET Remoting to communicate with a running process on my machine?

c# .net process ipc
How do I use mqueue in a c program on a Linux based system?

How do I use mqueue (message queue) in a c program on a Linux based system? I'm looking for some …

c linux ipc mqueue
Which Linux IPC technique to use?

We are still in the design-phase of our project but we are thinking of having three separate processes on an …

linux ipc