Top "Ipc" questions

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

Share condition variable & mutex between processes: does mutex have to locked before?

I need to some little help to understand how to use condition variables in C to resolve an exercise. Here …

c pthreads ipc mutex condition-variable
Simple IPC between C++ and Python (cross platform)

I have a C++ process running in the background that will be generating 'events' infrequently that a Python process running …

c++ python cross-platform ipc
Are message queues obsolete in linux?

I've been playing with message queues (System V, but POSIX should be ok too) in Linux recently and they seem …

linux sockets posix ipc message-queue
When to use Pipes vs When to use Shared Memory

I am reading about various IPC mechanism. I am trying to figure out the scenarios, where we use Shared Memory …

linux ipc pipe shared-memory
How to send integer with pipe between two processes!

I am trying to send an integer with pipe in a POSIX system but write() function is working for sending …

c linux ipc pipe
Shared Memory or mmap - Linux C/C++ IPC

The context is Inter-Process-Communication where one process("Server") has to send fixed-size structs to many listening processes("Clients") running on …

c++ c ipc shared-memory mmap
Efficient Python to Python IPC

What would be an inter-process communication (IPC) framework\technique with the following requirements: Transfer native Python objects between two Python …

python ipc inter-process-communicat
How to use Zeromq's inproc and ipc transports?

Im a newbie to ZERMQ. ZeroMQ has TCP, INPROC and IPC transports. I'm looking for examples using python and inproc …

python ipc zeromq inproc
Use WM_COPYDATA to send data between processes

I wish to send text between processes. I have found lots of examples of this but none that I can …

c++ windows ipc wm-copydata
Fastest IPC method on Windows 7

What is the fastest possible Interprocess Communication (IPC) method on Windows 7? We would like to share only a memory blocks (…

c++ c windows boost ipc