Top "Ipc" questions

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

How can I launch an instance of an application using Python?

I am creating a Python script where it does a bunch of tasks and one of those tasks is to …

python scripting ipc
System V IPC vs POSIX IPC

What are the differences between System V IPC and POSIX IPC ? Why do we have two standards ? How to decide …

posix ipc sysv
how to use shared memory to communicate between two processes

I am trying to communicate between two processes. I am trying to save data(like name, phone number, address) to …

c ipc process shared-memory
How to have 2 JVMs talk to one another

I have the following situation: I have 2 JVM processes (really 2 java processes running separately, not 2 threads) running on a local …

java ipc concurrent-programming
Best way for interprocess communication in C++

I have two processes one will query other for data.There will be huge amount of queries in a limited …

c++ memory boost ipc shared
Go Inter-Process Communication

I'm writing a load balanced server system in Go. The load balancing server will communicate with several application servers and …

ipc go
Socketpair() in C/Unix

I have 2 applications on the same system that I need to communicate back and forth. From my research I believe …

c sockets unix ipc
Difference between Mutex, Semaphore & Spin Locks

I am doing experiments with IPC, especially with Mutex, Semaphore and Spin Lock. What I learnt is Mutex is used …

multithreading ipc mutex semaphore spinlock
Comparing Unix/Linux IPC

Lots of IPCs are offered by Unix/Linux: pipes, sockets, shared memory, dbus, message-queues... What are the most suitable applications …

linux unix ipc