Message Passing between different machines

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
floatT
Posts: 2
Joined: Wed Nov 02, 2005 12:00 am

Message Passing between different machines

Post by floatT »

Hi!

I want to use message passing with mailboxes between processes running not on the same machine.

Message Passing uses functions msgsnd() and msgrcv() to send and receive messages.
Implementing on same machine between parent and child process doesn't seem to be a big problem, but what can i do if the processes producer and consumer run on different machines?

Is it possible to solve this problem using sockets or do i need a message passing system (MPI) then with other functions than msgsnd() and msgrcv()?

How to pass messages to processe's mailbox on other machine?

regards,
floatT
Legend
Member
Member
Posts: 195
Joined: Tue Nov 02, 2004 12:00 am
Contact:

Re: Message Passing between different machines

Post by Legend »

Hmm, well, looks like you need to add TCP/IP support to your OS first at least! ;)
*post*
Post Reply