" Live as if you were to die tomorrow. Learn as if you were to live forever.. "
- Mahatma Gandhi

Interprocess Communication using named pipe.

Posted on November 23rd, 2015 by Lipika Chatterjee

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. […]