home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / lang / misc / 3044 < prev    next >
Encoding:
Internet Message Format  |  1992-09-12  |  1.1 KB

  1. Path: sparky!uunet!mcsun!sunic!dkuug!diku!dingbat
  2. From: dingbat@diku.dk (Niels Skov Olsen)
  3. Newsgroups: comp.lang.misc
  4. Subject: Re: Inter-process comm. with OCCAM
  5. Message-ID: <1992Sep12.145742.10474@odin.diku.dk>
  6. Date: 12 Sep 92 14:57:42 GMT
  7. References: <1992Sep11.161809.1@cc.curtin.edu.au>
  8. Sender: dingbat@rimfaxe.diku.dk
  9. Organization: Department of Computer Science, U of Copenhagen
  10. Lines: 22
  11.  
  12. slaud@cc.curtin.edu.au writes:
  13.  
  14. >    " Inter-process communication between procedures with OCCAM "
  15.  
  16. >   I am required to compare inter-process communications of programming
  17. >languages, and was told OCCAM implements this very well.
  18.  
  19. I would suggest reading the following paper:
  20.  
  21.     "Communicating Sequential Processes"
  22.     by C.A.R Hoare
  23.     in Communications of The ACM, August 1978
  24.  
  25. OCCAM's ipc mechanism is built upon, and virtually identical to CSP, as 
  26. described in the classic paper by Hoare. 
  27.  
  28. Basically it's just synchronous communication over a channel, meaning
  29. that communication will happen when both the sending and the receiving
  30. processes are ready, and that either party waits if the other is not
  31. ready.
  32.  
  33. Niels
  34.