Interprocess Communication using named pipe.
Interprocess Communication (IPC) is a set of methods for the exchange of data among multiple threads in one or more processes. IPC has four general approaches: Shared memory. Messages. Pipes. Sockets. Pipes are basically files that reside in memory instead on disk. Writing to a pipe and reading from a pipe is in FIFO manner.…
read more