View Single Post
Old Dec 26th, 2005, 8:06 PM   #7
para
Programmer
 
Join Date: Dec 2005
Posts: 65
Rep Power: 3 para is on a distinguished road
Interprocess communication can be achieved with pipes ( http://www.cs.cf.ac.uk/Dave/C/node23.html ). Basically a pipe is a buffer managed by the operating system, you can read from it and write to it. Each operation (read/write) has an associated file descriptor.

http://en.wikipedia.org/wiki/Pipes_and_filters
http://www.tin.org/bin/man.cgi?section=2&topic=pipe
para is offline   Reply With Quote