Top "Ipc" questions

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

Why is my ipcMain not sending to ipcRenderer in Electron?

New to electron I've figured out how to send from Renderer to Main but I'm trying to learn how to …

javascript electron ipc ipcrenderer ipcmain
Which is better for local IPC, POSIX message queues (mqueues) or Unix domain (local) sockets?

Is it better to use POSIX message queues or Unix domain sockets for local IPC communication? I have worked with …

c++ c sockets ipc posix
D-Bus equivalent for Windows

Anyone know of a Linux/D-Bus sort of mechanism for Windows? Thanks

windows winapi ipc dbus
How do I synchronize access to shared memory in LynxOS/POSIX?

I am implementing two processes on a LynxOS SE (POSIX conformant) system that will communicate via shared memory. One process …

c ipc posix shared-memory lynxos
Sockets vs named pipes for local IPC on Windows?

Are there any reasons for favoring named pipes over sockets for local IPC (both using win-api), effectiveness-wize, resource-wize or otherwise, …

winapi sockets ipc named-pipes
Sending keyboard input to a program from command-line

How do you send keyboard input to a program? That is, under a Linux GUI, is there a good manual (…

linux user-interface shell keyboard ipc
How to get variables shared between child and parent process while using fork in perl

I am using fork in my code. Before fork call in my code, the parent process has a global variable …

perl global-variables ipc fork shared
Is it better to use TThread's "Synchronize" or use Window Messages for IPC between main and child thread?

I have a rather simple multi-threaded VCL gui application written with Delphi 2007. I do some processing in multiple child threads (…

multithreading delphi ipc
Best way to do interprocess communication on Mac OS X

I'm looking at building a Cocoa application on the Mac with a back-end daemon process (really just a mostly-headless Cocoa …

cocoa networking sockets ipc nsconnection
Fast Cross Platform Inter Process Communication in C++

I'm looking for a way to get two programs to efficiently transmit a large amount of data to each other, …

c++ ipc p2p