Unix Domain Socket

Reading Time: 3 minutes Brief A Unix domain socket or IPC socket is a data communications endpoint for exchanging data between processes executing on the same host operating system. The API for Unix domain sockets is similar to that of an Internet socket, but […]

Shared Memory IPC

Reading Time: 2 minutes Brief As the name suggests, shared memory is a memory that may be shared by multiple programs with an intent to provide communication among them or avoid redundant copies. Points To Catch shmget(): Creates a shared memory segment, The key argument could be […]