message passing interfaces

Reply

Join Date: Jul 2004
Posts: 25
Reputation: Naveen is an unknown quantity at this point 
Solved Threads: 0
Naveen's Avatar
Naveen Naveen is offline Offline
Light Poster

message passing interfaces

 
0
  #1
Aug 6th, 2004
hi. can someone please explain what are message passing interfaces and how i can code them?

regards,

naveen
Reply With Quote Quick reply to this message  
Join Date: May 2004
Posts: 256
Reputation: FireNet will become famous soon enough FireNet will become famous soon enough 
Solved Threads: 6
FireNet's Avatar
FireNet FireNet is offline Offline
Posting Whiz in Training

Re: message passing interfaces

 
0
  #2
Aug 6th, 2004
Please reffer to your post about networking stuff for my answer.

http://www.daniweb.com/techtalkforums/thread8956.html

Hey,give details.There are a lot of message passing interfaces types related to various totally diffrent stuff........
See what you can, remember what you need

Fourzon | Earn via Coding
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 25
Reputation: Naveen is an unknown quantity at this point 
Solved Threads: 0
Naveen's Avatar
Naveen Naveen is offline Offline
Light Poster

Re: message passing interfaces

 
0
  #3
Aug 6th, 2004
Originally Posted by FireNet
Please reffer to your post about networking stuff for my answer.

http://www.daniweb.com/techtalkforums/thread8956.html

Hey,give details.There are a lot of message passing interfaces types related to various totally diffrent stuff........
sorry for so few details, but i havent the slighest idea about them. if possible could u pls talk bout a few concepts or give me some basic info about the common things involved in it so that i could follow up frm there.

if there r any links u could fwd me, thatl be gr8 too.

regards,

naveen

ps: sorry for the trouble caused if any :-)
Reply With Quote Quick reply to this message  
Join Date: May 2004
Posts: 256
Reputation: FireNet will become famous soon enough FireNet will become famous soon enough 
Solved Threads: 6
FireNet's Avatar
FireNet FireNet is offline Offline
Posting Whiz in Training

Re: message passing interfaces

 
0
  #4
Aug 6th, 2004
Gee,if you want just an overall stuff about things you dont know then try http://www.google.com
That will give you lots of good stuff,as I always say enough to drown in.


P.S If you want a tut on winsock servers try the tut fourm here at daniweb.
See what you can, remember what you need

Fourzon | Earn via Coding
Reply With Quote Quick reply to this message  
Join Date: Jun 2004
Posts: 436
Reputation: Chainsaw is an unknown quantity at this point 
Solved Threads: 11
Chainsaw's Avatar
Chainsaw Chainsaw is offline Offline
Unprevaricator

Re: message passing interfaces

 
0
  #5
Aug 7th, 2004
In short, message passing interfaces are one of the popular ways that operating systems work.

Your code, as an application, has 'messages' "rain down" upon it. You get to respond to each message as it comes in.

Messages may be things like startup, shutdown, draw yourself, a timer fired, etc.

Some OS', like DOS, don't use message passing, instead your program assumes overall control of the computer and you demand/ask for information from the system. Console apps often work this way too.

So, a console app might say:

print "What is your name?";
input name;
if (name == "Chainsaw") print "You are a genius!";

whereas a message passing interface would be more like...

<display form>
<wait for messages>
<on edit-box-exit, get edit-box-contents, if contents == "Chainsaw", etc etc etc>


So, message passing interfaces are more involved, but allow multiple processes to share the machine cooperatively.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC