English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

2 answers

Sure, if all you're looking for is a simple example, use unix command shell pipelines, which you pipe the output of one command into another, like "cat /etc/hosts | grep mailhost" this creates IPC between the cat and grep processes.

If you are looking for the classic examples of IPC and the issues surrounding it, Google for the "dining philosophers" problem or the "sleeping barber" problem.

In the context of networking, IPC is commonly accomplished using the socket interface, where pairs of sockets running in different processes exchange data, even on the same machine.

2006-09-06 06:46:46 · answer #1 · answered by networkmaster 5 · 0 0

search google for IPC for theory on it... Inter Process communication can happen within machine boundaries or across machine boundaries . When it happens across machines you use what is called a remote procedure call.. (RPC)

2006-09-05 23:41:09 · answer #2 · answered by srirambm 2 · 0 0

fedest.com, questions and answers