Top "Ipc" questions

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

Inter-Process Communication (IPC) for Windows with C

I have an old program written in C with Microsoft Visual C++, and I need to implement some kind of "…

c windows ipc keep-alive watchdog
How to notify a specific thread in Java

How I can call a particular thread in inter-thread communication? In the program below I have two threads t1 and …

java multithreading ipc java-threads
how can I notify a running activity from a broadcast receiver?

I have an activity, it needs to response to a broadcast event. Since an activity can not be a broadcast …

android ipc broadcastreceiver
Exception in Thread:must be a sequence, not instance

Im working on python and im trying to execute a thread that takes 1 parameter "q", but when im trying to …

python multithreading ipc
Shared-memory IPC synchronization (lock-free)

Consider the following scenario: Requirements: Intel x64 Server (multiple CPU-sockets => NUMA) Ubuntu 12, GCC 4.6 Two processes sharing large amounts of …

c++ synchronization ipc shared-memory lock-free
IPC speed and compare

I am trying to implement a real-time application which involves IPC across different modules. The modules are doing some data …

sockets ipc real-time shared-memory pipe
Named pipes server read timeout

When using C# NamedPipeServerStream, in case a client doesn't send any message-end-pattern (like \r\n when server reads with ReadLine()) …

c# ipc named-pipes
send struct in mq_send

I am using POSIX IPC and according to the documentation - http://man7.org/linux/man-pages/man3/mq_send.3.html …

c linux posix ipc mqueue
System V shared memory in Python?

How can I make use of the shmat(), shmdt(), shmctl(), shmget() calls from Python? Are they hidden somewhere in the …

python ipc sysv shared-memory
boost::interprocess message_queue performance - rather slow?

I need an ultra-fast MQ mechanism, where both sender and receiver are written in C++, on Windows platform. My current …

c++ performance ipc memory-mapped-files boost-interprocess