occam

occam definition - computer

A parallel processing language designed to handle concurrent operations. The INMOS Transputer executes occam almost directly. In the following statements, two items of data are read and incremented at the same time. PAR specifies that following statements are to be executed concurrently, and SEQ indicates that the following statements are executed sequentially.

   PAR
    SEQ
      chan1 ? item1
      item1 := item1 + 1
    SEQ
      chan2 ? item2
      item2 := item2 + 1





Computer Desktop Encyclopedia THIS DEFINITION IS FOR PERSONAL USE ONLY
All other reproduction is strictly prohibited without permission from the publisher.
Copyright © 1981-2009 by Computer Language Company Inc. All rights reserved.

Comments
Improve this definition.
Do you have more to add? Share your linguistic knowledge or observation.
/Register to save your comments.