|
IPC is Inter Process Communication. There are many ways of doing it. But I think your problem can be solved in a much simpler way. Add a network interface to the programs that writes the o/p to stdout on your master and slave. Now you can run a simple server from the network to capture both the o/ps and then display it in different windows. Since you are new to programming, I don't know how useful this solution will be. But I feel network programming is much simpler compared to IPC. Also, I believe that since you run these two programs on two different computers, you will have to use some network programming to get the messages on one side. (Ok, I too am ignorant about MPI. May be you can do all these with MPI by itself! IPC also makes use of some message passing most of the time)
--Sarin
|